<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Break The Loop — End Self-Sabotage at the Root</title>

<link href="" rel="stylesheet">

<a href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Serif+Display:ital@0;1&display=swap" >https:="" fonts.googleapis.com="" c...<="" a="">

<style>

:root {

--bg: #141414;

--bg-2: #1a1a1a;

--bg-3: #1f1f1f;

--border: #2a2a2a;

--orange: #E8522A;

--orange-dim: rgba(232,82,42,0.1);

--orange-mid: rgba(232,82,42,0.25);

--white: #f5f5f5;

--muted: #777777;

--muted-light: #aaaaaa;

}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {

background: var(--bg);

color: var(--white);

font-family: 'DM Sans', sans-serif;

font-weight: 300;

font-size: 17px;

line-height: 1.75;

overflow-x: hidden;

}

/* ── TYPOGRAPHY ─────────────────────────────────────── */

h1, h2, h3, h4 { font-weight: 400; line-height: 1.1; }

.display {

font-family: 'Bebas Neue', sans-serif;

letter-spacing: 2px;

text-transform: uppercase;

}

.serif { font-family: 'DM Serif Display', serif; }

em { font-style: italic; color: var(--orange); }

strong { font-weight: 600; color: var(--white); }

p { color: var(--muted-light); }

/* ── LAYOUT ─────────────────────────────────────────── */

.container {

max-width: 860px;

margin: 0 auto;

padding: 0 32px;

}

.container-wide {

max-width: 1100px;

margin: 0 auto;

padding: 0 32px;

}

section { padding: 100px 0; }

/* ── NAV ─────────────────────────────────────────────── */

nav {

position: fixed;

top: 0; left: 0; right: 0;

z-index: 100;

padding: 20px 40px;

display: flex;

align-items: center;

justify-content: space-between;

background: rgba(20,20,20,0.92);

backdrop-filter: blur(12px);

border-bottom: 1px solid var(--border);

}

.nav-brand {

font-family: 'Bebas Neue', sans-serif;

font-size: 22px;

letter-spacing: 3px;

color: var(--white);

text-decoration: none;

}

.nav-links {

display: flex;

align-items: center;

gap: 32px;

}

.nav-links a {

font-size: 12px;

letter-spacing: 2px;

text-transform: uppercase;

color: var(--muted);

text-decoration: none;

transition: color 0.2s;

}

.nav-links a:hover { color: var(--white); }

/* ── BUTTONS ─────────────────────────────────────────── */

.btn {

display: inline-flex;

align-items: center;

gap: 10px;

font-family: 'DM Sans', sans-serif;

font-size: 13px;

font-weight: 500;

letter-spacing: 1.5px;

text-transform: uppercase;

text-decoration: none;

padding: 16px 32px;

border-radius: 2px;

transition: all 0.25s ease;

cursor: pointer;

border: none;

}

.btn-primary {

background: var(--orange);

color: white;

}

.btn-primary:hover {

background: #d44520;

transform: translateY(-1px);

}

.btn-outline {

background: transparent;

color: var(--white);

border: 1px solid var(--border);

}

.btn-outline:hover {

border-color: var(--orange);

color: var(--orange);

}

.btn-ghost {

background: transparent;

color: var(--muted-light);

border: 1px solid var(--border);

font-size: 12px;

}

.btn-ghost:hover {

color: var(--white);

border-color: rgba(255,255,255,0.2);

}

/* ── HERO ────────────────────────────────────────────── */

.hero {

min-height: 100vh;

display: flex;

align-items: center;

padding-top: 80px;

position: relative;

overflow: hidden;

}

.hero::before {

content: '';

position: absolute;

top: -200px; right: -200px;

width: 700px; height: 700px;

background: radial-gradient(circle, rgba(232,82,42,0.07) 0%, transparent 70%);

pointer-events: none;

}

.hero::after {

content: '';

position: absolute;

bottom: 0; left: 0; right: 0;

height: 1px;

background: linear-gradient(90deg, transparent, var(--border), transparent);

}

.hero-inner {

padding: 100px 0 80px;

}

.hero-eyebrow {

font-size: 12px;

letter-spacing: 4px;

text-transform: uppercase;

color: var(--orange);

font-weight: 500;

margin-bottom: 24px;

display: flex;

align-items: center;

gap: 12px;

}

.hero-eyebrow::before {

content: '';

display: block;

width: 32px;

height: 1px;

background: var(--orange);

}

.hero-headline {

font-family: 'Bebas Neue', sans-serif;

font-size: clamp(64px, 10vw, 110px);

line-height: 0.95;

letter-spacing: 1px;

margin-bottom: 32px;

color: var(--white);

}

.hero-headline span {

color: var(--orange);

display: block;

}

.hero-sub {

font-size: 20px;

line-height: 1.6;

color: var(--muted-light);

max-width: 580px;

margin-bottom: 48px;

font-weight: 300;

}

.hero-ctas {

display: flex;

flex-wrap: wrap;

gap: 16px;

margin-bottom: 64px;

}

.hero-stat-row {

display: flex;

gap: 48px;

padding-top: 48px;

border-top: 1px solid var(--border);

}

.hero-stat-num {

font-family: 'Bebas Neue', sans-serif;

font-size: 42px;

color: var(--orange);

line-height: 1;

margin-bottom: 4px;

}

.hero-stat-label {

font-size: 12px;

letter-spacing: 1px;

text-transform: uppercase;

color: var(--muted);

}

/* ── SECTION LABELS ──────────────────────────────────── */

.section-eyebrow {

font-size: 11px;

letter-spacing: 4px;

text-transform: uppercase;

color: var(--orange);

font-weight: 500;

margin-bottom: 16px;

display: flex;

align-items: center;

gap: 12px;

}

.section-eyebrow::before {

content: '';

display: block;

width: 24px;

height: 1px;

background: var(--orange);

}

.section-headline {

font-family: 'DM Serif Display', serif;

font-size: clamp(36px, 5vw, 54px);

line-height: 1.15;

margin-bottom: 24px;

color: var(--white);

}

/* ── PROBLEM SECTION ─────────────────────────────────── */

.problem {

background: var(--bg-2);

border-top: 1px solid var(--border);

border-bottom: 1px solid var(--border);

}

.problem-text {

font-family: 'DM Serif Display', serif;

font-size: clamp(22px, 3vw, 32px);

line-height: 1.5;

color: var(--white);

font-weight: 400;

margin-bottom: 32px;

}

.problem-text em {

font-style: italic;

color: var(--orange);

}

.problem-list {

list-style: none;

display: flex;

flex-direction: column;

gap: 16px;

margin: 40px 0;

}

.problem-list li {

font-size: 16px;

color: var(--muted-light);

padding-left: 24px;

position: relative;

line-height: 1.6;

}

.problem-list li::before {

content: '';

position: absolute;

left: 0;

top: 10px;

width: 6px;

height: 6px;

border-radius: 50%;

background: var(--orange);

opacity: 0.7;

}

.problem-bottom {

padding: 32px;

background: rgba(232,82,42,0.06);

border: 1px solid var(--orange-mid);

border-radius: 2px;

margin-top: 40px;

}

.problem-bottom p {

font-size: 17px;

color: var(--white);

font-weight: 300;

line-height: 1.7;

}

/* ── WHY SECTION ─────────────────────────────────────── */

.mechanism-grid {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 2px;

margin: 48px 0;

background: var(--border);

}

.mechanism-card {

background: var(--bg-2);

padding: 32px;

}

.mechanism-num {

font-family: 'Bebas Neue', sans-serif;

font-size: 48px;

color: var(--orange);

opacity: 0.3;

line-height: 1;

margin-bottom: 12px;

}

.mechanism-title {

font-family: 'Bebas Neue', sans-serif;

font-size: 20px;

letter-spacing: 2px;

color: var(--white);

margin-bottom: 10px;

}

.mechanism-desc {

font-size: 15px;

color: var(--muted-light);

line-height: 1.65;

}

/* ── WHY ELSE FAILED ─────────────────────────────────── */

.failed {

background: var(--bg-2);

border-top: 1px solid var(--border);

border-bottom: 1px solid var(--border);

}

.failed-items {

display: flex;

flex-direction: column;

gap: 0;

margin: 40px 0;

border: 1px solid var(--border);

}

.failed-item {

padding: 28px 32px;

border-bottom: 1px solid var(--border);

display: grid;

grid-template-columns: 200px 1fr;

gap: 32px;

align-items: start;

}

.failed-item:last-child { border-bottom: none; }

.failed-label {

font-family: 'Bebas Neue', sans-serif;

font-size: 16px;

letter-spacing: 2px;

color: var(--muted);

text-transform: uppercase;

padding-top: 2px;

}

.failed-text {

font-size: 16px;

color: var(--muted-light);

line-height: 1.65;

}

/* ── SOLUTION ────────────────────────────────────────── */

.solution-intro {

font-family: 'DM Serif Display', serif;

font-size: clamp(20px, 2.5vw, 28px);

line-height: 1.55;

color: var(--white);

font-weight: 400;

margin-bottom: 40px;

}

.phase-timeline {

display: flex;

flex-direction: column;

gap: 0;

margin: 48px 0;

border: 1px solid var(--border);

}

.phase-row {

display: grid;

grid-template-columns: 160px 1fr;

gap: 0;

border-bottom: 1px solid var(--border);

}

.phase-row:last-child { border-bottom: none; }

.phase-label {

padding: 28px 24px;

border-right: 1px solid var(--border);

background: rgba(255,255,255,0.01);

}

.phase-num {

font-family: 'Bebas Neue', sans-serif;

font-size: 11px;

letter-spacing: 3px;

color: var(--orange);

text-transform: uppercase;

margin-bottom: 4px;

}

.phase-name {

font-family: 'Bebas Neue', sans-serif;

font-size: 16px;

letter-spacing: 1px;

color: var(--white);

line-height: 1.2;

}

.phase-weeks {

font-size: 11px;

color: var(--muted);

margin-top: 4px;

}

.phase-content {

padding: 28px 32px;

}

.phase-modules {

font-size: 15px;

color: var(--muted-light);

line-height: 1.7;

}

/* ── WHAT'S INCLUDED ─────────────────────────────────── */

.included-grid {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 2px;

margin: 48px 0;

background: var(--border);

}

.included-item {

background: var(--bg-2);

padding: 32px;

display: flex;

flex-direction: column;

gap: 10px;

}

.included-icon {

font-size: 24px;

margin-bottom: 4px;

}

.included-title {

font-family: 'Bebas Neue', sans-serif;

font-size: 18px;

letter-spacing: 1px;

color: var(--white);

}

.included-desc {

font-size: 14px;

color: var(--muted-light);

line-height: 1.6;

}

/* ── FOR WHOM ─────────────────────────────────────────── */

.forwhom {

background: var(--bg-2);

border-top: 1px solid var(--border);

border-bottom: 1px solid var(--border);

}

.forwhom-grid {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 48px;

margin-top: 40px;

}

.forwhom-col-title {

font-family: 'Bebas Neue', sans-serif;

font-size: 14px;

letter-spacing: 3px;

text-transform: uppercase;

margin-bottom: 20px;

}

.forwhom-col-title.yes { color: var(--orange); }

.forwhom-col-title.no { color: var(--muted); }

.forwhom-list {

list-style: none;

display: flex;

flex-direction: column;

gap: 12px;

}

.forwhom-list li {

font-size: 15px;

color: var(--muted-light);

padding-left: 20px;

position: relative;

line-height: 1.6;

}

.forwhom-list.yes li::before {

content: '';

position: absolute;

left: 0; top: 9px;

width: 5px; height: 5px;

border-radius: 50%;

background: var(--orange);

}

.forwhom-list.no li::before {

content: '';

position: absolute;

left: 0; top: 9px;

width: 5px; height: 5px;

border-radius: 50%;

background: var(--muted);

opacity: 0.5;

}

/* ── ABOUT ───────────────────────────────────────────── */

.about-inner {

display: grid;

grid-template-columns: 1fr 380px;

gap: 80px;

align-items: start;

}

.about-body p {

font-size: 17px;

line-height: 1.8;

color: var(--muted-light);

margin-bottom: 20px;

}

.about-body p:last-child { margin-bottom: 0; }

.about-credentials {

display: flex;

flex-direction: column;

gap: 16px;

margin-top: 40px;

padding-top: 40px;

border-top: 1px solid var(--border);

}

.credential {

display: flex;

align-items: center;

gap: 14px;

font-size: 14px;

color: var(--muted-light);

}

.credential-dot {

width: 6px;

height: 6px;

border-radius: 50%;

background: var(--orange);

flex-shrink: 0;

}

.about-card {

background: var(--bg-2);

border: 1px solid var(--border);

padding: 36px;

position: sticky;

top: 100px;

}

.about-card-name {

font-family: 'Bebas Neue', sans-serif;

font-size: 28px;

letter-spacing: 2px;

color: var(--white);

margin-bottom: 4px;

}

.about-card-title {

font-size: 13px;

letter-spacing: 1px;

text-transform: uppercase;

color: var(--orange);

margin-bottom: 24px;

}

.about-card-divider {

height: 1px;

background: var(--border);

margin: 24px 0;

}

.about-card-stat {

display: flex;

align-items: baseline;

gap: 8px;

margin-bottom: 16px;

}

.about-card-stat-num {

font-family: 'Bebas Neue', sans-serif;

font-size: 36px;

color: var(--orange);

line-height: 1;

}

.about-card-stat-label {

font-size: 13px;

color: var(--muted);

line-height: 1.4;

}

/* ── THE LAB ─────────────────────────────────────────── */

.lab {

background: var(--bg-2);

border-top: 1px solid var(--border);

border-bottom: 1px solid var(--border);

position: relative;

overflow: hidden;

}

.lab::before {

content: '';

position: absolute;

top: -100px; left: -100px;

width: 500px; height: 500px;

background: radial-gradient(circle, rgba(232,82,42,0.05) 0%, transparent 70%);

pointer-events: none;

}

.lab-inner {

display: grid;

grid-template-columns: 1fr 400px;

gap: 80px;

align-items: center;

}

.lab-tag {

display: inline-flex;

align-items: center;

gap: 8px;

background: var(--orange-dim);

border: 1px solid var(--orange-mid);

padding: 6px 14px;

font-size: 11px;

letter-spacing: 3px;

text-transform: uppercase;

color: var(--orange);

font-weight: 500;

margin-bottom: 24px;

}

.lab-headline {

font-family: 'Bebas Neue', sans-serif;

font-size: 56px;

letter-spacing: 2px;

color: var(--white);

line-height: 1;

margin-bottom: 16px;

}

.lab-sub {

font-size: 17px;

color: var(--muted-light);

line-height: 1.7;

margin-bottom: 32px;

}

.lab-details {

display: flex;

flex-direction: column;

gap: 12px;

margin-bottom: 40px;

}

.lab-detail {

display: flex;

align-items: center;

gap: 12px;

font-size: 14px;

color: var(--muted-light);

}

.lab-detail-dot {

width: 4px;

height: 4px;

border-radius: 50%;

background: var(--orange);

flex-shrink: 0;

}

.lab-signup {

background: var(--bg);

border: 1px solid var(--border);

padding: 36px;

}

.lab-signup-title {

font-family: 'Bebas Neue', sans-serif;

font-size: 22px;

letter-spacing: 2px;

color: var(--white);

margin-bottom: 6px;

}

.lab-signup-sub {

font-size: 13px;

color: var(--muted);

margin-bottom: 24px;

line-height: 1.5;

}

.lab-form {

display: flex;

flex-direction: column;

gap: 12px;

}

.lab-input {

width: 100%;

background: var(--bg-2);

border: 1px solid var(--border);

outline: none;

color: var(--white);

font-family: 'DM Sans', sans-serif;

font-size: 15px;

padding: 14px 16px;

transition: border-color 0.2s;

}

.lab-input:focus { border-color: var(--orange); }

.lab-input::placeholder { color: var(--muted); }

.lab-form-note {

font-size: 12px;

color: var(--muted);

text-align: center;

margin-top: 4px;

}

/* ── TESTIMONIALS ────────────────────────────────────── */

.testimonials-grid {

display: grid;

grid-template-columns: repeat(3, 1fr);

gap: 2px;

margin-top: 48px;

background: var(--border);

}

.testimonial {

background: var(--bg-2);

padding: 32px;

}

.testimonial-quote {

font-family: 'DM Serif Display', serif;

font-size: 18px;

line-height: 1.6;

color: var(--white);

font-weight: 400;

margin-bottom: 24px;

}

.testimonial-author {

font-size: 12px;

letter-spacing: 2px;

text-transform: uppercase;

color: var(--muted);

}

.testimonial-role {

font-size: 12px;

color: var(--muted);

margin-top: 2px;

}

/* ── OPTIONS / CTA ───────────────────────────────────── */

.options {

background: var(--bg-2);

border-top: 1px solid var(--border);

}

.options-grid {

display: grid;

grid-template-columns: 1fr 1fr 1fr;

gap: 2px;

margin-top: 48px;

background: var(--border);

}

.option-card {

background: var(--bg);

padding: 40px 36px;

display: flex;

flex-direction: column;

gap: 0;

}

.option-card.featured {

background: linear-gradient(160deg, rgba(232,82,42,0.12) 0%, var(--bg) 60%);

border-top: 2px solid var(--orange);

}

.option-tag {

font-size: 11px;

letter-spacing: 3px;

text-transform: uppercase;

color: var(--orange);

margin-bottom: 16px;

font-weight: 500;

}

.option-name {

font-family: 'Bebas Neue', sans-serif;

font-size: 32px;

letter-spacing: 1px;

color: var(--white);

line-height: 1.1;

margin-bottom: 16px;

}

.option-desc {

font-size: 15px;

color: var(--muted-light);

line-height: 1.65;

flex: 1;

margin-bottom: 32px;

}

.option-details {

list-style: none;

display: flex;

flex-direction: column;

gap: 8px;

margin-bottom: 32px;

padding: 24px 0;

border-top: 1px solid var(--border);

border-bottom: 1px solid var(--border);

}

.option-details li {

font-size: 13px;

color: var(--muted-light);

padding-left: 16px;

position: relative;

line-height: 1.5;

}

.option-details li::before {

content: '';

position: absolute;

left: 0; top: 8px;

width: 4px; height: 4px;

border-radius: 50%;

background: var(--orange);

opacity: 0.6;

}

/* ── FINAL CTA ───────────────────────────────────────── */

.final-cta {

text-align: center;

padding: 120px 0;

position: relative;

overflow: hidden;

}

.final-cta::before {

content: '';

position: absolute;

top: 50%; left: 50%;

transform: translate(-50%, -50%);

width: 600px; height: 600px;

background: radial-gradient(circle, rgba(232,82,42,0.06) 0%, transparent 70%);

pointer-events: none;

}

.final-cta .section-headline {

font-size: clamp(36px, 5vw, 62px);

max-width: 700px;

margin: 0 auto 20px;

}

.final-cta p {

font-size: 18px;

color: var(--muted-light);

max-width: 520px;

margin: 0 auto 48px;

line-height: 1.7;

}

.final-cta-btns {

display: flex;

justify-content: center;

flex-wrap: wrap;

gap: 16px;

}

/* ── FOOTER ──────────────────────────────────────────── */

footer {

padding: 40px;

border-top: 1px solid var(--border);

display: flex;

align-items: center;

justify-content: space-between;

}

.footer-brand {

font-family: 'Bebas Neue', sans-serif;

font-size: 18px;

letter-spacing: 3px;

color: var(--muted);

}

.footer-tagline {

font-family: 'DM Serif Display', serif;

font-style: italic;

font-size: 14px;

color: var(--orange);

}

.footer-links {

display: flex;

gap: 24px;

}

.footer-links a {

font-size: 12px;

letter-spacing: 1px;

text-transform: uppercase;

color: var(--muted);

text-decoration: none;

transition: color 0.2s;

}

.footer-links a:hover { color: var(--white); }

/* ── DIVIDER ─────────────────────────────────────────── */

.divider {

height: 1px;

background: linear-gradient(90deg, transparent, var(--border), transparent);

margin: 0;

}

/* ── ANIMATIONS ──────────────────────────────────────── */

@keyframes fadeUp {

from { opacity: 0; transform: translateY(20px); }

to { opacity: 1; transform: translateY(0); }

}

.hero-eyebrow { animation: fadeUp 0.6s ease 0.1s both; }

.hero-headline { animation: fadeUp 0.6s ease 0.2s both; }

.hero-sub { animation: fadeUp 0.6s ease 0.3s both; }

.hero-ctas { animation: fadeUp 0.6s ease 0.4s both; }

.hero-stat-row { animation: fadeUp 0.6s ease 0.5s both; }

/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 768px) {

nav { padding: 16px 24px; }

.nav-links { display: none; }

section { padding: 64px 0; }

.container, .container-wide { padding: 0 24px; }

.mechanism-grid, .included-grid, .forwhom-grid,

.about-inner, .lab-inner, .options-grid,

.testimonials-grid { grid-template-columns: 1fr; }

.failed-item { grid-template-columns: 1fr; gap: 8px; }

.hero-stat-row { gap: 32px; flex-wrap: wrap; }

.phase-row { grid-template-columns: 1fr; }

.phase-label { border-right: none; border-bottom: 1px solid var(--border); }

footer { flex-direction: column; gap: 16px; text-align: center; }

}

</style>

</head>

<body>

<!-- NAV -->

<nav>

<a href="#" class="nav-brand">Break The Loop</a>

<div class="nav-links">

<a href="#how-it-works">How it works</a>

<a href="#about">About Wim</a>

<a href="#the-lab">The Lab</a>

<a href="#options">Work Together</a>

</div>

</nav>

<!-- HERO -->

<section class="hero">

<div class="container">

<div class="hero-inner">

<div class="hero-eyebrow">Self-sabotage resolved at the root</div>

<h1 class="hero-headline">

Break

<span>The Loop.</span>

</h1>

<p class="hero-sub">You already know what to do. You've always known. The problem was never the strategy — it was the pattern running underneath it. This is where that ends.</p>

<div class="hero-ctas">

<a href="#options" class="btn btn-primary">Start the Program</a>

<a href="#options" class="btn btn-outline">Book a 1:1 Session</a>

<a href="#the-lab" class="btn btn-ghost">Join The Lab — Free</a>

</div>

<div class="hero-stat-row">

<div>

<div class="hero-stat-num">14</div>

<div class="hero-stat-label">Week program</div>

</div>

<div>

<div class="hero-stat-num">25+</div>

<div class="hero-stat-label">Years of practice</div>

</div>

<div>

<div class="hero-stat-num">4</div>

<div class="hero-stat-label">Deep 1:1 sessions</div>

</div>

<div>

<div class="hero-stat-num">1</div>

<div class="hero-stat-label">Pattern resolved at the root</div>

</div>

</div>

</div>

</div>

</section>

<!-- PROBLEM -->

<section class="problem">

<div class="container">

<div class="section-eyebrow">The real problem</div>

<p class="problem-text">

You get momentum — and then you stop. You know exactly what you should do — and you don't do it. You've resolved this before. And then it came back, wearing different clothes.

</p>

<p class="problem-text">

This isn't a motivation problem. It isn't a discipline problem. It isn't even a mindset problem. <em>It's a pattern running underneath all of those.</em>

</p>

<ul class="problem-list">

<li>You sabotage progress right before a real breakthrough</li>

<li>You work hard enough to almost succeed — but not quite</li>

<li>You keep having the same conversation, the same conflict, the same result</li>

<li>The pattern runs reliably, predictably, like clockwork — and you can't see how to stop it</li>

<li>You've tried therapy, coaching, courses, discipline — and something still doesn't shift</li>

</ul>

<div class="problem-bottom">

<p>Here's what nobody tells you: the pattern is not your enemy. It was installed to protect you. It did its job. The problem is that it's still running on old code — in a context where it no longer serves you. Working against it doesn't work. You need to go underneath it.</p>

</div>

</div>

</section>

<!-- WHY IT KEEPS HAPPENING -->

<section>

<div class="container">

<div class="section-eyebrow">Why it keeps happening</div>

<h2 class="section-headline">Your conscious mind is <em>5%</em> of the equation.</h2>

<p style="font-size:18px;color:var(--muted-light);line-height:1.7;margin-bottom:48px;">The other 95% — the part that runs your patterns, your reactions, your automatic behavior — operates below conscious awareness. Every insight, every reframe, every motivational push works on the 5%. The pattern lives in the 95%. That's why nothing sticks.</p>

<div class="mechanism-grid">

<div class="mechanism-card">

<div class="mechanism-num">01</div>

<div class="mechanism-title">The Charge</div>

<div class="mechanism-desc">Every pattern is driven by an emotional charge — fear, shame, inadequacy, grief — that the subconscious learned to route around rather than feel. That routing is the pattern.</div>

</div>

<div class="mechanism-card">

<div class="mechanism-num">02</div>

<div class="mechanism-title">The State</div>

<div class="mechanism-desc">The charge creates a body state — tight, numb, wired, collapsed — that happens automatically, below the threshold of conscious choice.</div>

</div>

<div class="mechanism-card">

<div class="mechanism-num">03</div>

<div class="mechanism-title">The Behavior</div>

<div class="mechanism-desc">The state drives behavior. Delay. Avoidance. Overwork. Shutdown. Withdrawal. It feels like a choice — but by this point, it isn't.</div>

</div>

<div class="mechanism-card">

<div class="mechanism-num">04</div>

<div class="mechanism-title">The Loop</div>

<div class="mechanism-desc">The behavior brings short-term relief. That relief reinforces the whole cycle. The pattern becomes more entrenched with every repetition.</div>

</div>

</div>

<p style="font-size:17px;color:var(--muted-light);line-height:1.7;margin-top:16px;">To break the pattern, you work at the level of the charge — not the behavior. Not the story. Not the beliefs. The charge itself. That's where the change is permanent.</p>

</div>

</section>

<!-- WHY ELSE FAILED -->

<section class="failed">

<div class="container">

<div class="section-eyebrow">Why everything else didn't stick</div>

<h2 class="section-headline">Insight without resolution <em>keeps you stuck.</em></h2>

<div class="failed-items">

<div class="failed-item">

<div class="failed-label">Therapy</div>

<div class="failed-text">Gave you insight into the pattern. Understanding is real — but understanding a pattern and resolving the charge underneath it are two different things. Most people understand their patterns in extraordinary detail. They still run them.</div>

</div>

<div class="failed-item">

<div class="failed-label">Coaching</div>

<div class="failed-text">Helped you set better goals and take better action. But without addressing what runs underneath the action, the pattern reasserts itself. You get momentum. Then you stop. Then you start again.</div>

</div>

<div class="failed-item">

<div class="failed-label">Mindset work</div>

<div class="failed-text">Worked on the story — the beliefs, the reframes, the thinking. The problem is the pattern isn't stored as a thought. It's stored as a charge in the body. Changing the story doesn't move the charge.</div>

</div>

<div class="failed-item">

<div class="failed-label">Willpower</div>

<div class="failed-text">Disciplined your way through the behavior while the charge remained intact underneath. Eventually the charge won. It always wins. Willpower is a finite resource. The subconscious is not.</div>

</div>

</div>

<p style="font-size:17px;color:var(--muted-light);line-height:1.7;">None of those approaches were wrong. They were just incomplete. Break the Loop goes to where the pattern actually lives.</p>

</div>

</section>

<!-- SOLUTION / HOW IT WORKS -->

<section id="how-it-works">

<div class="container">

<div class="section-eyebrow">The program</div>

<h2 class="section-headline">Break The Loop — <em>14 weeks.</em></h2>

<p class="solution-intro">One pattern. Resolved at the root. Through subconscious work, identity installation, and integration — in a structured container that holds you through the full arc of genuine change.</p>

<div class="phase-timeline">

<div class="phase-row">

<div class="phase-label">

<div class="phase-num">Phase 1</div>

<div class="phase-name">Ground & Visibility</div>

<div class="phase-weeks">Weeks 1 — 3</div>

</div>

<div class="phase-content">

<div class="phase-modules">Map every identity you carry. Understand exactly how your pattern works — the charge, the state, the behavior, the loop. Choose the one pattern to work with. Plant the first seed of what different looks like.</div>

</div>

</div>

<div class="phase-row">

<div class="phase-label">

<div class="phase-num">Phase 2</div>

<div class="phase-name">Contact & Capacity</div>

<div class="phase-weeks">Weeks 4 — 5</div>

</div>

<div class="phase-content">

<div class="phase-modules">Session 1 — direct contact with the pattern at the subconscious level. Then: learn to stay with what opened. The capacity to remain present with the charge, rather than automatically routing away from it.</div>

</div>

</div>

<div class="phase-row">

<div class="phase-label">

<div class="phase-num">Phase 3</div>

<div class="phase-name">Identity & Installation</div>

<div class="phase-weeks">Weeks 6 — 9</div>

</div>

<div class="phase-content">

<div class="phase-modules">Navigate the gap after the shift. Define the new identity — who you want to become without the pattern running you. Session 2. Begin daily installation through heart-centered practice, elevated emotion, and subconscious repetition.</div>

</div>

</div>

<div class="phase-row">

<div class="phase-label">

<div class="phase-num">Phase 4</div>

<div class="phase-name">Ownership</div>

<div class="phase-weeks">Weeks 10 — 14</div>

</div>

<div class="phase-content">

<div class="phase-modules">Anchors and pattern interruption for daily life. Sessions 3 and 4. Self-hypnosis — direct access to your own subconscious. The life skill: a transferable, repeatable process that works on every pattern, for the rest of your life.</div>

</div>

</div>

</div>

<div class="included-grid">

<div class="included-item">

<div class="included-icon">📹</div>

<div class="included-title">10 Video Modules</div>

<div class="included-desc">Released week by week. Each one builds directly on the last. Yours to keep.</div>

</div>

<div class="included-item">

<div class="included-icon">🎯</div>

<div class="included-title">4 Deep 1:1 Sessions</div>

<div class="included-desc">At the exact points in the program where you're ready for direct subconscious work. Each one arrives when it matters most.</div>

</div>

<div class="included-item">

<div class="included-icon">📋</div>

<div class="included-title">12 Digital Worksheets</div>

<div class="included-desc">Purpose-built tools for each module. Auto-save. Print-friendly. Yours to return to at any time.</div>

</div>

<div class="included-item">

<div class="included-icon">🎧</div>

<div class="included-title">2 Guided Audio Practices</div>

<div class="included-desc">The somatic staying practice and the daily identity installation audio. Both designed for consistent daily use.</div>

</div>

<div class="included-item">

<div class="included-icon">📞</div>

<div class="included-title">Weekly Check-ins</div>

<div class="included-desc">Short, focused, and non-optional. To keep you oriented and ensure nothing moves through unseen.</div>

</div>

<div class="included-item">

<div class="included-icon">💬</div>

<div class="included-title">WhatsApp Access</div>

<div class="included-desc">Direct line. 24-hour response. You don't need the perfect question to reach out.</div>

</div>

</div>

</div>

</section>

<!-- FOR WHOM -->

<section class="forwhom">

<div class="container">

<div class="section-eyebrow">Who this is for</div>

<h2 class="section-headline">Built for professionals and entrepreneurs <em>who already know</em> the problem.</h2>

<p style="font-size:17px;color:var(--muted-light);line-height:1.7;margin-bottom:8px;">Typically 35 to 50. High functioning in most areas. Aware enough to see the pattern — frustrated enough to want it gone for good.</p>

<div class="forwhom-grid">

<div>

<div class="forwhom-col-title yes">This is for you if</div>

<ul class="forwhom-list yes">

<li>You have a specific recurring pattern that keeps costing you — in your work, relationships, or leadership</li>

<li>You've done the personal development work but something still won't shift at the root</li>

<li>You're willing to look at what's actually running the show — not just the surface behavior</li>

<li>You can commit 14 weeks of genuine engagement — not passive watching</li>

<li>You want a skill that works on every future pattern, not just this one</li>

</ul>

</div>

<div>

<div class="forwhom-col-title no">This is not for you if</div>

<ul class="forwhom-list no">

<li>You're looking for a quick fix or a motivational boost</li>

<li>You want someone to tell you what to do without doing the inner work yourself</li>

<li>You're in acute crisis — this is deep work, not crisis intervention</li>

<li>You're not ready to stay present with what the pattern has been protecting you from</li>

</ul>

</div>

</div>

</div>

</section>

<!-- ABOUT -->

<section id="about">

<div class="container-wide">

<div class="about-inner">

<div class="about-body">

<div class="section-eyebrow">About Wim</div>

<h2 class="section-headline">25 years in the room <em>with what actually changes people.</em></h2>

<p>I've spent 25 years working with what actually moves people — not what sounds good in theory, not what makes a compelling framework, but what creates real, lasting change at the level where behavior and identity live.</p>

<p>That work led me to develop Nexis — a heart-centered approach that operates through the field, accessing patterns at the level they actually form. It's not something I teach inside the program. It's what I bring into the sessions. It's the thing that makes the sessions different from anything most people have experienced.</p>

<p>The people I work with are not broken. They're running intelligent patterns that were installed without their permission and have outlived their usefulness. My job is to help them work with those patterns — not fight them, not bypass them — until they loosen enough for something genuinely new to take root.</p>

<p>Break the Loop is everything I know, structured in a way that gives you the full skill — not just one transformation, but the capacity to work with your own system for the rest of your life.</p>

<div class="about-credentials">

<div class="credential"><div class="credential-dot"></div>25+ years of subconscious and identity work</div>

<div class="credential"><div class="credential-dot"></div>Practitioner of hypnosis, parts integration, regression work</div>

<div class="credential"><div class="credential-dot"></div>Developer of Nexis — a proprietary heart-centered field approach</div>

<div class="credential"><div class="credential-dot"></div>Based in the Netherlands · Working internationally</div>

</div>

</div>

<div class="about-card">

<div class="about-card-name">Wim</div>

<div class="about-card-title">Founder · Break The Loop</div>

<div class="about-card-divider"></div>

<div class="about-card-stat">

<div class="about-card-stat-num">25+</div>

<div class="about-card-stat-label">Years working with subconscious patterns</div>

</div>

<div class="about-card-stat">

<div class="about-card-stat-num">14</div>

<div class="about-card-stat-label">Weeks to resolve a pattern at the root</div>

</div>

<div class="about-card-stat">

<div class="about-card-stat-num">1</div>

<div class="about-card-stat-label">Modality developed: Nexis</div>

</div>

<div class="about-card-divider"></div>

<a href="#options" class="btn btn-primary" style="width:100%;justify-content:center;">Work with Wim</a>

</div>

</div>

</div>

</section>

<!-- TESTIMONIALS -->

<section style="background:var(--bg-2);border-top:1px solid var(--border);border-bottom:1px solid var(--border);">

<div class="container-wide">

<div class="section-eyebrow">Results</div>

<h2 class="section-headline">What happens when you resolve the <em>root.</em></h2>

<div class="testimonials-grid">

<div class="testimonial">

<p class="testimonial-quote">"I've done years of therapy and understood my patterns in extraordinary detail. What happened in my first session with Wim was the first time something actually moved. Three weeks later it still hasn't come back."</p>

<div class="testimonial-author">M.V.</div>

<div class="testimonial-role">Director, Financial Services</div>

</div>

<div class="testimonial">

<p class="testimonial-quote">"The program gave me something I didn't expect — not just a resolved pattern, but an actual skill. I know how to work with whatever surfaces next. That's different from anything I've done before."</p>

<div class="testimonial-author">K.B.</div>

<div class="testimonial-role">Entrepreneur, 14-week program</div>

</div>

<div class="testimonial">

<p class="testimonial-quote">"I kept stopping right before things got good. I thought it was fear of failure — it wasn't. Finding out what it actually was, and working with it instead of fighting it, changed how I operate completely."</p>

<div class="testimonial-author">R.T.</div>

<div class="testimonial-role">Senior Leader, Tech</div>

</div>

</div>

</div>

</section>

<!-- THE LAB -->

<section class="lab" id="the-lab">

<div class="container-wide">

<div class="lab-inner">

<div>

<div class="lab-tag">Free · Biweekly · Live</div>

<div class="lab-headline">The Lab</div>

<p class="lab-sub">A free biweekly live session where real work happens. Not a webinar. Not a presentation. A live working session where we work directly with whatever the field brings — parts integration, pattern resolution, heart-centered practice. Different every time. Always real.</p>

<div class="lab-details">

<div class="lab-detail"><div class="lab-detail-dot"></div>Free to attend</div>

<div class="lab-detail"><div class="lab-detail-dot"></div>Live and interactive — not a recording</div>

<div class="lab-detail"><div class="lab-detail-dot"></div>Biweekly — dates sent to subscribers</div>

<div class="lab-detail"><div class="lab-detail-dot"></div>No commitment, no catch</div>

<div class="lab-detail"><div class="lab-detail-dot"></div>Real work, real shifts</div>

</div>

<p style="font-size:15px;color:var(--muted);line-height:1.6;">The Lab is where cold audiences become warm ones. Come and see what this work actually is — before deciding if the program is right for you.</p>

</div>

<div class="lab-signup">

<div class="lab-signup-title">Join The Lab</div>

<div class="lab-signup-sub">Enter your name and email and we'll send you the next date and link.</div>

<div class="lab-form">

<input type="text" class="lab-input" placeholder="Your first name">

<input type="email" class="lab-input" placeholder="Your email address">

<button class="btn btn-primary" style="width:100%;justify-content:center;">Reserve My Spot</button>

<p class="lab-form-note">No spam. Just the next session date and link.</p>

</div>

</div>

</div>

</div>

</section>

<!-- OPTIONS -->

<section class="options" id="options">

<div class="container-wide">

<div class="section-eyebrow">Work together</div>

<h2 class="section-headline">Three ways to <em>start.</em></h2>

<div class="options-grid">

<div class="option-card">

<div class="option-tag">Entry point</div>

<div class="option-name">The Lab</div>

<p class="option-desc">The free biweekly live session. Real work. No commitment. Come and experience what this approach actually is before making any decision.</p>

<ul class="option-details">

<li>Free to attend</li>

<li>Biweekly live session</li>

<li>Parts integration, pattern work, heart-centered practice</li>

<li>Different content every session</li>

</ul>

<a href="#the-lab" class="btn btn-outline" style="width:100%;justify-content:center;">Join The Lab Free</a>

</div>

<div class="option-card featured">

<div class="option-tag">Recommended</div>

<div class="option-name">Break The Loop Program</div>

<p class="option-desc">The complete 14-week program. One pattern resolved at the root. The full skill installed. Everything you need to work with whatever surfaces next.</p>

<ul class="option-details">

<li>10 video modules, released weekly</li>

<li>4 deep 1:1 sessions with Wim</li>

<li>12 digital worksheets</li>

<li>2 guided audio practices</li>

<li>Weekly check-ins and WhatsApp access</li>

</ul>

<a href="SYSTEME_IO_CHECKOUT_LINK" class="btn btn-primary" style="width:100%;justify-content:center;">Start the Program</a>

</div>

<div class="option-card">

<div class="option-tag">Single session</div>

<div class="option-name">1:1 Session</div>

<p class="option-desc">A single deep session. For a specific pattern, a specific charge, or a specific moment where you need direct subconscious work. No program required.</p>

<ul class="option-details">

<li>90 minutes with Wim</li>

<li>Nexis-based direct work</li>

<li>Parts integration, regression, field work</li>

<li>Available as a standalone or between program sessions</li>

</ul>

<a href="CALENDLY_LINK" class="btn btn-outline" style="width:100%;justify-content:center;">Book a Session</a>

</div>

</div>

</div>

</section>

<!-- FINAL CTA -->

<section class="final-cta">

<div class="container">

<div class="section-eyebrow" style="justify-content:center;">The decision</div>

<h2 class="section-headline serif">The pattern will keep running until something changes at the level it lives.</h2>

<p>You've been managing it. Working around it. Pushing through it. You already know that doesn't work permanently. This does.</p>

<div class="final-cta-btns">

<a href="SYSTEME_IO_CHECKOUT_LINK" class="btn btn-primary">Start the Program</a>

<a href="CALENDLY_LINK" class="btn btn-outline">Book a 1:1 Session</a>

<a href="#the-lab" class="btn btn-ghost">Join The Lab Free</a>

</div>

</div>

</section>

<!-- FOOTER -->

<footer>

<div class="footer-brand">Break The Loop</div>

<div class="footer-tagline">It all starts here and now.</div>

<div class="footer-links">

<a href="#">Privacy</a>

<a href="#">Terms</a>

<a href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Serif+Display:ital@0;1&display=swap" >https:="" fonts.googleapis.com="" c...<="" a=""> <a href="<a href="https://web.whatsapp.com/send?phone=+31617057070" >https:="" web.whatsapp.com="" send?...<="" a="">">WhatsApp</a>

<a href="https://web.whatsapp.com/send?phone=+31617057070" >https:="" web.whatsapp.com="" send?...<="" a="">

</div>

</footer>

</body>

<a href="https://web.whatsapp.com/send?phone=+31617057070" >https:="" web.whatsapp.com="" send?...<="" a=""></html>