<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Breakthrough Express — Fernando Goncalves Borrega</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=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--navy: #0B1829;
--navy-mid: #122035;
--navy-card: #1A2E47;
--navy-soft: #243A55;
--gold: #C9A045;
--gold-light:#E8C46A;
--gold-dim: #8A6B2A;
--cream: #F0EBE0;
--cream-dim: #9AABBA;
--teal: #5BC4B8;
--line: rgba(201,160,69,0.18);
--line-soft: rgba(240,235,224,0.10);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--navy);
color: var(--cream);
font-family: 'Inter', sans-serif;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.wrap--wide { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
/* TYPOGRAPHY */
h1, h2, h3, h4, blockquote {
font-family: 'Cormorant Garamond', serif;
line-height: 1.15;
letter-spacing: -0.01em;
}
.eyebrow {
font-family: 'Space Mono', monospace;
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--gold);
display: block;
margin-bottom: 12px;
}
.lede {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(22px, 3vw, 30px);
font-weight: 500;
line-height: 1.4;
color: var(--cream);
}
.body-text { font-size: 16px; color: var(--cream-dim); line-height: 1.7; margin-top: 14px; }
.body-text strong { color: var(--cream); font-weight: 600; }
.accent { color: var(--gold-light); }
/* TOP BAR */
.topbar {
position: sticky; top: 0; z-index: 100;
background: rgba(11,24,41,0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--line);
padding: 14px 0;
}
.topbar .wrap--wide { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.brand {
font-family: 'Space Mono', monospace;
font-size: 11px;
letter-spacing: 0.12em;
color: var(--gold);
}
.deadline-chip {
font-family: 'Space Mono', monospace;
font-size: 11px;
color: var(--cream);
background: var(--navy-card);
border: 1px solid var(--line);
padding: 6px 14px;
border-radius: 100px;
}
/* HERO */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
position: relative;
overflow: hidden;
}
.hero-photo {
position: relative;
overflow: hidden;
}
.hero-photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: left center;
filter: brightness(0.75) saturate(0.85);
}
.hero-photo::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(90deg, transparent 60%, var(--navy) 100%),
linear-gradient(180deg, transparent 50%, rgba(11,24,41,0.6) 100%);
}
.hero-text {
display: flex;
flex-direction: column;
justify-content: center;
padding: 80px 48px 80px 40px;
position: relative;
}
.hero-text::before {
content: '';
position: absolute;
left: 0; top: 15%; bottom: 15%;
width: 1px;
background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
}
.hero-text h1 {
font-size: clamp(32px, 4.5vw, 52px);
font-weight: 600;
color: var(--cream);
margin-bottom: 20px;
}
.hero-text h1 em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
font-style: italic;
color: var(--cream-dim);
border-left: 2px solid var(--gold);
padding-left: 16px;
margin-top: 24px;
line-height: 1.5;
}
.hero-express {
margin-top: 32px;
padding: 18px 22px;
background: var(--navy-card);
border: 1px solid var(--line);
border-radius: 8px;
}
.hero-express .label {
font-family: 'Space Mono', monospace;
font-size: 10px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--gold);
display: block;
margin-bottom: 6px;
}
.hero-express .name {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-weight: 600;
color: var(--cream);
}
.hero-express .note {
font-size: 13px;
color: var(--cream-dim);
font-style: italic;
margin-top: 6px;
}
.hero-cta {
margin-top: 28px;
display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.btn-primary {
display: inline-block;
background: linear-gradient(135deg, var(--gold), var(--gold-light));
color: var(--navy);
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 14px;
padding: 14px 26px;
border-radius: 6px;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,160,69,0.35); }
.btn-ghost {
font-size: 13px;
color: var(--cream-dim);
font-family: 'Inter', sans-serif;
text-decoration: none;
}
.btn-ghost:hover { color: var(--gold-light); }
.hero-spots {
margin-top: 22px;
font-family: 'Space Mono', monospace;
font-size: 12px;
color: var(--gold);
letter-spacing: 0.06em;
}
/* SECTIONS */
section { padding: 80px 0; }
.section-border { border-bottom: 1px solid var(--line-soft); }
/* CREDENTIALS BAR */
.creds-bar {
background: var(--navy-mid);
border-bottom: 1px solid var(--line);
padding: 18px 0;
}
.creds-inner {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 0;
}
.cred-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 20px;
font-family: 'Space Mono', monospace;
font-size: 10px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--cream-dim);
white-space: nowrap;
}
.cred-icon { color: var(--gold); font-size: 8px; }
.cred-divider { width: 1px; height: 24px; background: var(--line); }
/* CLARITY CALL BOX */
.clarity-box {
background: var(--navy-card);
border: 1px solid var(--teal);
border-radius: 10px;
padding: 32px;
margin-top: 28px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.clarity-copy h4 {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
color: var(--cream);
margin-bottom: 6px;
}
.clarity-copy p { font-size: 14px; color: var(--cream-dim); max-width: 440px; }
.btn-clarity {
display: inline-block;
background: transparent;
color: var(--teal);
border: 1px solid var(--teal);
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 13px;
padding: 13px 24px;
border-radius: 6px;
text-decoration: none;
white-space: nowrap;
transition: background 0.2s, color 0.2s;
}
.btn-clarity:hover { background: var(--teal); color: var(--navy); }
/* SOCIAL LINKS */
.social-links {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 18px;
flex-wrap: wrap;
}
.social-links a {
font-family: 'Space Mono', monospace;
font-size: 10px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--cream-dim);
text-decoration: none;
opacity: 0.6;
transition: opacity 0.2s, color 0.2s;
}
.social-links a:hover { opacity: 1; color: var(--gold-light); }
@media (max-width: 768px) {
.cred-item { font-size: 9px; padding: 6px 12px; }
.cred-divider { display: none; }
.clarity-box { flex-direction: column; text-align: center; }
}
/* SIGNAL SECTION — personal intro */
.signal-section {
background: var(--navy-mid);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.signal-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
}
.signal-photo {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.signal-photo img {
width: 100%;
height: 420px;
object-fit: cover;
object-position: center top;
}
.signal-photo .wizard-badge {
position: absolute;
bottom: 16px; left: 16px;
background: rgba(11,24,41,0.85);
backdrop-filter: blur(8px);
border: 1px solid var(--gold-dim);
border-radius: 6px;
padding: 10px 14px;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: 14px;
color: var(--gold-light);
}
.signal-copy h2 {
font-size: clamp(28px, 3.5vw, 38px);
color: var(--cream);
margin-bottom: 20px;
}
.signal-copy p {
font-size: 16px;
color: var(--cream-dim);
line-height: 1.75;
margin-bottom: 16px;
}
.signal-copy p strong { color: var(--cream); }
.signal-copy p em { color: var(--gold-light); font-style: italic; }
.signals-list {
margin-top: 24px;
display: flex;
flex-direction: column;
gap: 10px;
}
.signal-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 14px 16px;
background: var(--navy-card);
border-radius: 6px;
border-left: 2px solid var(--teal);
}
.signal-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--teal);
flex-shrink: 0;
margin-top: 6px;
}
.signal-item p { font-size: 14px; color: var(--cream-dim); margin: 0; }
.signal-item p strong { color: var(--cream); }
/* BLUEPRINT SECTION */
.blueprint-intro {
text-align: center;
max-width: 640px;
margin: 0 auto 48px;
}
.blueprint-intro h2 {
font-size: clamp(30px, 4vw, 44px);
color: var(--cream);
margin-bottom: 16px;
}
.blueprint-intro p {
font-size: 17px;
color: var(--cream-dim);
line-height: 1.7;
}
.pillars {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
position: relative;
}
.pillars::before {
content: '';
position: absolute;
top: 50%;
left: calc(33.333% - 10px);
right: calc(33.333% - 10px);
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
pointer-events: none;
}
.pillar {
background: var(--navy-card);
border: 1px solid var(--line);
border-radius: 10px;
padding: 32px 24px;
text-align: center;
position: relative;
opacity: 1;
transform: translateY(0);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.pillar-number {
font-family: 'Cormorant Garamond', serif;
font-size: 48px;
font-weight: 700;
color: var(--gold-dim);
line-height: 1;
opacity: 0.4;
position: absolute;
top: 16px; right: 20px;
}
.pillar-icon {
width: 52px; height: 52px;
border-radius: 50%;
background: linear-gradient(135deg, var(--navy-soft), var(--navy-card));
border: 1px solid var(--gold-dim);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 18px;
font-size: 22px;
}
.pillar h3 {
font-size: 22px;
font-weight: 600;
color: var(--gold-light);
margin-bottom: 10px;
}
.pillar .pillar-sub {
font-family: 'Space Mono', monospace;
font-size: 10px;
letter-spacing: 0.12em;
color: var(--gold-dim);
text-transform: uppercase;
margin-bottom: 12px;
}
.pillar p {
font-size: 14px;
color: var(--cream-dim);
line-height: 1.6;
}
.pillar ul {
list-style: none;
margin-top: 14px;
display: flex;
flex-direction: column;
gap: 6px;
}
.pillar ul li {
font-size: 13px;
color: var(--gold-light);
font-style: italic;
font-family: 'Cormorant Garamond', serif;
}
/* EXPRESS BRIDGE */
.express-bridge {
background: linear-gradient(135deg, var(--navy-card) 0%, var(--navy-soft) 100%);
border: 1px solid var(--gold-dim);
border-radius: 12px;
padding: 40px 44px;
text-align: center;
margin-top: 48px;
position: relative;
overflow: hidden;
}
.express-bridge::before {
content: '✦';
position: absolute;
top: -20px; left: 50%; transform: translateX(-50%);
font-size: 40px;
color: var(--gold);
}
.express-bridge h3 {
font-size: clamp(22px, 3vw, 30px);
color: var(--cream);
margin-bottom: 12px;
}
.express-bridge p {
font-size: 16px;
color: var(--cream-dim);
max-width: 520px;
margin: 0 auto;
line-height: 1.7;
}
.express-bridge .express-name {
display: inline-block;
margin-top: 18px;
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-style: italic;
color: var(--gold-light);
border: 1px dashed var(--gold-dim);
padding: 10px 24px;
border-radius: 6px;
}
/* WHAT'S INCLUDED */
.section-head { margin-bottom: 36px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 38px); color: var(--cream); }
.section-head p { font-size: 16px; color: var(--cream-dim); margin-top: 10px; }
.ticket {
display: grid;
grid-template-columns: 1fr auto;
background: var(--navy-card);
border: 1px solid var(--line-soft);
border-radius: 8px;
margin-bottom: 16px;
overflow: hidden;
opacity: 1;
transform: translateY(0);
transition: opacity 0.6s ease, transform 0.6s ease;
box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.ticket-main { padding: 24px 26px; }
.ticket-main .ttype {
font-family: 'Space Mono', monospace;
font-size: 10px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 6px;
}
.ticket-main h4 {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-weight: 600;
color: var(--cream);
margin-bottom: 6px;
}
.ticket-main p { font-size: 14px; color: var(--cream-dim); }
.ticket-meta {
min-width: 155px;
display: flex; flex-direction: column;
justify-content: center; gap: 10px;
padding: 24px 20px;
border-left: 1px dashed var(--line-soft);
background: rgba(255,255,255,0.02);
font-family: 'Space Mono', monospace;
}
.ticket-meta .meta-row { font-size: 11px; color: var(--cream-dim); }
.ticket-meta .meta-row span { display: block; color: var(--cream); font-size: 13px; margin-top: 2px; }
.ticket-meta .meta-price { font-size: 15px; color: var(--gold-light); font-weight: 700; }
.ticket.bonus { border-color: var(--gold-dim); }
.ticket.bonus .ticket-main .ttype { color: var(--gold-light); }
/* TALLY */
.tally {
background: var(--navy-card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 28px 28px 4px;
margin-top: 8px;
}
.tally-row {
display: flex; justify-content: space-between;
font-family: 'Space Mono', monospace;
font-size: 13px;
padding: 12px 0;
border-bottom: 1px solid var(--line-soft);
color: var(--cream-dim);
}
.tally-row span:last-child { color: var(--cream); }
.tally-row.total {
font-size: 15px; color: var(--cream);
border-bottom: none; padding-top: 18px;
}
.tally-row.total span:last-child { text-decoration: line-through; color: var(--cream-dim); }
.price-reveal { text-align: center; margin-top: 40px; }
.price-reveal .was {
font-family: 'Space Mono', monospace;
font-size: 13px;
color: var(--cream-dim);
text-decoration: line-through;
}
.price-reveal .now {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(52px, 8vw, 72px);
font-weight: 700;
color: var(--cream);
}
.price-reveal .now sup {
font-size: 0.35em;
top: -0.6em;
color: var(--gold);
font-family: 'Space Mono', monospace;
}
.price-reveal .save {
display: inline-block;
margin-top: 14px;
font-family: 'Space Mono', monospace;
font-size: 12px;
color: var(--teal);
background: rgba(91,196,184,0.1);
border: 1px solid rgba(91,196,184,0.3);
padding: 7px 16px;
border-radius: 100px;
}
/* PROOF */
.proof-section { background: var(--navy-mid); }
.proof-card {
max-width: 640px;
margin: 0 auto;
text-align: center;
}
.proof-card blockquote {
font-size: clamp(20px, 2.8vw, 26px);
font-style: italic;
color: var(--cream);
line-height: 1.5;
font-weight: 400;
}
.proof-card blockquote::before { content: '\201C'; color: var(--gold); }
.proof-card blockquote::after { content: '\201D'; color: var(--gold); }
.proof-card .attribution {
margin-top: 22px;
font-family: 'Space Mono', monospace;
font-size: 12px;
color: var(--gold-dim);
letter-spacing: 0.06em;
}
.stars {
margin: 0 auto 24px;
display: flex; justify-content: center; gap: 4px;
}
.stars span { color: var(--gold); font-size: 18px; }
/* CTA FINAL */
.cta-final { text-align: center; }
.cta-final h2 {
font-size: clamp(28px, 4vw, 42px);
color: var(--cream);
max-width: 580px;
margin: 0 auto 16px;
}
.cta-final p {
font-size: 16px;
color: var(--cream-dim);
max-width: 520px;
margin: 0 auto;
}
/* SCARCITY */
.scarcity-box {
background: var(--navy-card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 28px 30px;
margin-top: 32px;
}
.scarcity-top {
display: flex; justify-content: space-between; align-items: baseline;
flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.scarcity-top .label {
font-family: 'Space Mono', monospace;
font-size: 11px;
color: var(--cream-dim);
letter-spacing: 0.08em;
}
.scarcity-top .count {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
color: var(--gold-light);
font-weight: 600;
}
.spot-track { display: flex; gap: 6px; margin-bottom: 18px; }
.spot {
flex: 1; height: 6px; border-radius: 2px;
background: var(--navy-soft);
border: 1px solid var(--line-soft);
}
.spot.open {
background: linear-gradient(90deg, var(--gold-dim), var(--gold));
border-color: transparent;
}
#countdown {
font-family: 'Space Mono', monospace;
font-size: 13px;
color: var(--cream-dim);
border-top: 1px dashed var(--line);
padding-top: 16px;
}
#countdown .num { color: var(--gold-light); font-weight: 700; }
/* REPLY INSTRUCTION */
.reply-instruction {
max-width: 480px;
margin: 28px auto 0;
background: var(--navy-card);
border: 1px solid var(--line);
border-radius: 8px;
padding: 22px 26px;
}
.reply-instruction .step {
font-family: 'Space Mono', monospace;
font-size: 10px;
color: var(--teal);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 8px;
}
.reply-instruction p { font-size: 15px; color: var(--cream); }
.keyword {
font-family: 'Space Mono', monospace;
background: rgba(201,160,69,0.12);
color: var(--gold-light);
padding: 2px 8px;
border-radius: 3px;
font-size: 13px;
}
/* OPT-IN */
.optin-box {
margin-top: 48px;
background: var(--navy-card);
border: 1px solid var(--gold-dim);
border-radius: 12px;
padding: 36px 32px;
text-align: center;
}
.optin-box h3 {
font-size: clamp(20px, 2.8vw, 26px);
color: var(--cream);
margin-bottom: 10px;
}
.optin-box p { font-size: 14px; color: var(--cream-dim); max-width: 440px; margin: 0 auto; }
.optin-form {
display: flex; gap: 10px; max-width: 420px;
margin: 22px auto 0; flex-wrap: wrap; justify-content: center;
}
.optin-form input[type="email"] {
flex: 1; min-width: 200px;
padding: 13px 16px;
border-radius: 6px;
border: 1px solid var(--line);
background: var(--navy-mid);
color: var(--cream);
font-family: 'Inter', sans-serif;
font-size: 14px;
}
.optin-form input[type="email"]::placeholder { color: var(--cream-dim); }
.optin-form button {
background: linear-gradient(135deg, var(--gold), var(--gold-light));
color: var(--navy);
border: none;
padding: 13px 22px;
border-radius: 6px;
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 14px;
cursor: pointer;
transition: opacity 0.2s;
}
.optin-form button:hover { opacity: 0.88; }
.optin-note {
margin-top: 12px;
font-family: 'Space Mono', monospace;
font-size: 10px;
color: var(--cream-dim);
opacity: 0.7;
letter-spacing: 0.06em;
}
/* FORCE ALL CONTENT VISIBLE — Elementor compatibility */
.reveal, .reveal.visible,
.ticket, .ticket.visible,
.pillar, .pillar.visible {
opacity: 1 !important;
transform: translateY(0) !important;
}
/* CLOSING */
.closing-line {
text-align: center;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: 20px;
color: var(--gold-light);
padding: 52px 0 24px;
}
/* FOOTER */
footer {
border-top: 1px solid var(--line-soft);
padding: 32px 0 44px;
text-align: center;
}
footer .brand { font-size: 12px; margin-bottom: 6px; }
footer p {
font-size: 12px;
color: var(--cream-dim);
opacity: 0.6;
margin-top: 4px;
}
/* MER PANEL */
.mer-panel {
background: var(--navy-card);
border: 1px solid var(--line-soft);
border-left: 3px solid var(--teal);
border-radius: 8px;
padding: 28px 30px;
margin-top: 28px;
}
.mer-panel h3 { font-size: 20px; color: var(--cream); margin-bottom: 10px; }
.mer-panel p { font-size: 15px; color: var(--cream-dim); line-height: 1.7; }
.mer-panel .credential {
margin-top: 16px;
padding-top: 16px;
border-top: 1px dashed var(--line);
font-size: 14px;
color: var(--cream-dim);
font-style: italic;
}
.mer-panel .credential strong { color: var(--gold-light); font-style: normal; }
/* REVEAL ANIMATION */
.reveal {
opacity: 1;
transform: translateY(0);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.ticket {
opacity: 1;
transform: translateY(0);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.pillar {
opacity: 1;
transform: translateY(0);
transition: opacity 0.7s ease, transform 0.7s ease;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.hero { grid-template-columns: 1fr; min-height: auto; }
.hero-photo { height: 55vw; min-height: 260px; }
.hero-photo img { height: 100%; }
.hero-text { padding: 36px 24px; }
.hero-text::before { display: none; }
.signal-grid { grid-template-columns: 1fr; }
.signal-photo img { height: 320px; }
.pillars { grid-template-columns: 1fr; }
.pillars::before { display: none; }
.ticket { grid-template-columns: 1fr; }
.ticket-meta { border-left: none; border-top: 1px dashed var(--line-soft); flex-direction: row; flex-wrap: wrap; }
.hero-cta { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
*, .ticket, .pillar, .reveal { transition: none !important; animation: none !important; }
}
</style>
</head>
<body>
<!-- TOP BAR -->
<div class="topbar">
<div class="wrap--wide">
<div class="brand">FERCOACHING.COM — YOUR BREAKTHROUGH EXPRESS</div>
<div class="deadline-chip">✦ 5 Spots · Closes Sunday, Jul 5</div>
</div>
</div>
<!-- HERO -->
<div class="hero">
<div class="hero-photo">
<!--
UPLOAD INSTRUCTION: Upload the thoughtful plants photo (FER_-_PROFILE001)
to your WordPress Media Library and replace the src below with its URL.
e.g. src="https://fercoaching.com/wp-content/uploads/2026/fernando-hero.jpg"
-->
<img src="https://burnout-recovery-specialist.10web.cloud/wp-content/uploads/2026/07/FER-PROFILE001-scaled.jpg"
alt="Fernando Goncalves Borrega — Back to Center Blueprint" />
</div>
<div class="hero-text">
<span class="eyebrow">Half of 2026 is behind you</span>
<h1>Your day is already<br>telling you something.<br><em>Are you listening?</em></h1>
<div class="hero-tagline">
The heaviness. The lack of flow. The sense that something is off — but you keep pushing anyway.
</div>
<div class="hero-express">
<span class="label">Your Solution · This Week Only</span>
<div class="name">Your Breakthrough Express</div>
<div class="note">The focused, half-day entry point into the Back to Center Blueprint™ — the real change that makes the difference.</div>
</div>
<div class="hero-cta">
<a href="#claim" class="btn-primary">See what's included →</a>
<a href="mailto:fernando@fercoaching.com?cc=fgborrega@gmail.com&subject=Deep%20Dive%20Session%20%26%20Integration&body=I'd%20like%20to%20claim%20a%20spot." class="btn-ghost">Or reply to claim directly</a>
</div>
<div class="hero-spots">✦ 5 spots open · Enrollment closes Sunday night</div>
</div>
</div>
<!-- CREDENTIALS BAR -->
<div class="creds-bar">
<div class="wrap--wide">
<div class="creds-inner">
<div class="cred-item">
<span class="cred-icon">✦</span>
<span>Master Practitioner of NLP</span>
</div>
<div class="cred-divider"></div>
<div class="cred-item">
<span class="cred-icon">✦</span>
<span>Master Practitioner of MER®</span>
</div>
<div class="cred-divider"></div>
<div class="cred-item">
<span class="cred-icon">✦</span>
<span>Certified Hypnotherapist</span>
</div>
<div class="cred-divider"></div>
<div class="cred-item">
<span class="cred-icon">✦</span>
<span>Pranic Healer · Arhatic Yoga</span>
</div>
<div class="cred-divider"></div>
<div class="cred-item">
<span class="cred-icon">✦</span>
<span>30+ Years Guiding Leaders</span>
</div>
</div>
</div>
</div>
<!-- PERSONAL INTRO — SIGNAL SECTION -->
<section class="signal-section">
<div class="wrap--wide">
<div class="signal-grid">
<div class="signal-photo">
<!--
UPLOAD INSTRUCTION: Upload the wizard hat photo (__Fer-Smiling.JPG)
to your WordPress Media Library and replace the src below.
-->
<img src="https://burnout-recovery-specialist.10web.cloud/wp-content/uploads/2026/07/Fer-Smiling-scaled.jpg"
alt="Fernando Goncalves Borrega — The Magician of the Soul"
onerror="this.style.display='none'" />
<div class="wizard-badge">"The Magician of the Soul" ✦</div>
</div>
<div class="signal-copy">
<span class="eyebrow">A message from Fernando</span>
<h2>Your day is giving you feedback. Every single day.</h2>
<p>That feeling of <strong>heaviness</strong> when you wake up. The meetings that drain instead of energize. The decisions that used to be clear, now feel foggy. The sense that something is <em>off at the center</em> — but you can't quite name it, so you keep going anyway.</p>
<p>These aren't signs that you're failing. They are <strong>precise signals</strong> — your deeper self telling you that you have drifted from your center. And the further you drift, the heavier the leadership weight becomes.</p>
<p>For over 30 years, I have helped executives and leaders do one thing: <strong>get back to the center of their own life</strong> — and refine who they are from the inside out.</p>
<div class="signals-list">
<div class="signal-item">
<div class="signal-dot"></div>
<p><strong>Heaviness and lack of flow</strong> — not a productivity problem. A signal of misalignment.</p>
</div>
<div class="signal-item">
<div class="signal-dot"></div>
<p><strong>Decision fatigue</strong> — not a time management issue. A loss of discernment.</p>
</div>
<div class="signal-item">
<div class="signal-dot"></div>
<p><strong>Emotional reactivity</strong> — not a personality flaw. Unprocessed energy looking for an exit.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- BACK TO CENTER BLUEPRINT -->
<section class="section-border">
<div class="wrap">
<div class="blueprint-intro reveal">
<span class="eyebrow">The Framework</span>
<h2>The Back to Center Blueprint™</h2>
<p>Three pillars. One return to yourself. The foundation of everything we do together.</p>
</div>
<div class="pillars">
<div class="pillar">
<div class="pillar-number">1</div>
<div class="pillar-icon">🌱</div>
<div class="pillar-sub">The Foundation</div>
<h3>Purpose</h3>
<p>Not your job title. Not your revenue target. The reason your Soul came here — what you are meant to fulfill for yourself, for the ones you love, and for the legacy you will leave behind.</p>
<ul>
<li>Why you are here</li>
<li>Who you are becoming</li>
<li>What you will leave behind</li>
</ul>
</div>
<div class="pillar">
<div class="pillar-number">2</div>
<div class="pillar-icon">🔭</div>
<div class="pillar-sub">The Vision</div>
<h3>Intention</h3>
<p>What do you actually want? Seen from 8,000 feet above your own life — and simultaneously from your deepest inner light. Two perspectives that create one unshakeable clarity.</p>
<ul>
<li>The bird's-eye view</li>
<li>The inner light view</li>
<li>What you truly want</li>
</ul>
</div>
<div class="pillar">
<div class="pillar-number">3</div>
<div class="pillar-icon">⚡</div>
<div class="pillar-sub">The Movement</div>
<h3>Discernment & Action</h3>
<p>Goals, priorities, habits, and behaviors — refined through the qualities that actually make the difference in how you lead and how you live.</p>
<ul>
<li>Integrity · Discernment</li>
<li>Love · Acceptance</li>
<li>Forgiveness · Action</li>
</ul>
</div>
</div>
<div class="express-bridge reveal">
<h3>Your Breakthrough Express is the entry point</h3>
<p>One focused half-day that initiates your return to center — clearing what's been driving your burnout and reactive leadership, and beginning the blueprint that carries through the rest of 2026.</p>
<div class="express-name">"Your Breakthrough Express" — the condensed entry point into the full Breakthrough Process</div>
</div>
</div>
</section>
<!-- WHAT MER IS -->
<section class="section-border">
<div class="wrap">
<div class="section-head reveal">
<span class="eyebrow">What's included</span>
<h2>Half-Day Deep-Dive Breakthrough Session & Integration</h2>
<p>A focused, effective container for executives and managers in and around LA who are done carrying last quarter's weight into the next one.</p>
</div>
<div class="mer-panel reveal">
<h3>What MER actually is</h3>
<p>MER (Mental & Emotional Release) is a structured, non-invasive process — combining body-based techniques, NLP, and guided release work — that clears stored stress responses before they show up as short fuses, frozen decisions, or burnout under pressure. Clients have used it for everything from everyday overwhelm to much deeper, long-standing patterns. Think of it as maintenance for the operating system you lead from.</p>
<div class="credential">
Facilitated by <strong>Fernando Goncalves Borrega</strong>, Master Practitioner of NLP, MER, and Hypnosis. Studying and applying NLP since 2012; Pranic Healing, Arhatic Yoga, Energy Work, and Spiritual Guidance since 1994.
</div>
</div>
<div class="ticket reveal" style="margin-top:28px;">
<div class="ticket-main">
<div class="ttype">Deep-Dive · 01</div>
<h4>Half-Day Breakthrough Session</h4>
<p>A 5-hour intensive using MER, NLP, and energy work to clear the anger, fear, guilt, and past events driving your burnout and reactive leadership.</p>
</div>
<div class="ticket-meta">
<div class="meta-row">DURATION<span>5 hours</span></div>
<div class="meta-row">VALUE<span class="meta-price">$1,800</span></div>
</div>
</div>
<div class="ticket reveal">
<div class="ticket-main">
<div class="ttype">Integration · 02 — 05</div>
<h4>Four Leadership Coaching Sessions</h4>
<p>90 minutes each, translating your breakthrough into how you lead, decide, and communicate under pressure — spread across July and August.</p>
</div>
<div class="ticket-meta">
<div class="meta-row">DURATION<span>4 × 90 min</span></div>
<div class="meta-row">VALUE<span class="meta-price">$1,440</span></div>
</div>
</div>
<div class="ticket reveal">
<div class="ticket-main">
<div class="ttype">On-Call · 06 — 07</div>
<h4>Crisis / Boardroom Pressure Sessions</h4>
<p>Two 45-minute sessions you can tap anytime in the second half when the pressure spikes — precise recalibration instead of another meltdown.</p>
</div>
<div class="ticket-meta">
<div class="meta-row">DURATION<span>2 × 45 min</span></div>
<div class="meta-row">VALUE<span class="meta-price">$500</span></div>
</div>
</div>
<div class="ticket bonus reveal">
<div class="ticket-main">
<div class="ttype">Bonus — Mid-Year Gift</div>
<h4>60-Min MER Follow-Up</h4>
<p>Included at no extra cost — dedicated to any unresolved baggage that surfaces as you step into a bigger version of yourself.</p>
</div>
<div class="ticket-meta">
<div class="meta-row">DURATION<span>60 min</span></div>
<div class="meta-row">VALUE<span class="meta-price">$420</span></div>
</div>
</div>
<div class="tally">
<div class="tally-row"><span>Half-Day Breakthrough Session</span><span>$1,800</span></div>
<div class="tally-row"><span>4 × Leadership Coaching Sessions</span><span>$1,440</span></div>
<div class="tally-row"><span>2 × Crisis / Boardroom Sessions</span><span>$500</span></div>
<div class="tally-row"><span>Bonus MER Follow-Up</span><span>$420</span></div>
<div class="tally-row total"><span>Public value</span><span>$4,160</span></div>
</div>
<div class="price-reveal">
<div class="was">Public value: $4,160</div>
<div class="now">$2,754<sup>this week only</sup></div>
<div class="save">You save $1,406 — paid in full, this week only</div>
</div>
</div>
</section>
<!-- PROOF -->
<section class="proof-section section-border">
<div class="wrap">
<div class="proof-card reveal">
<div class="stars"><span>★</span><span>★</span><span>★</span><span>★</span><span>★</span></div>
<span class="eyebrow" style="text-align:center;">From a past client</span>
<blockquote>Fernando is priceless, and I wish everyone could have the guidance and support he provides. Working with Fernando has brought clarity, calm, and a sense of positive, productive momentum to virtually every area of my life.</blockquote>
<div class="attribution">— Matt C. · CEO, Marketing Company</div>
</div>
</div>
</section>
<!-- CTA FINAL -->
<section id="claim">
<div class="wrap">
<div class="cta-final reveal">
<span class="eyebrow">5 spots · closes Sunday, July 5</span>
<h2>This is not a panic discount. It is a deliberate decision.</h2>
<p>A moment to treat your mental, emotional, and spiritual alignment as seriously as your revenue targets — before your second-half calendar fills in around you instead.</p>
</div>
<div class="scarcity-box">
<div class="scarcity-top">
<span class="label">SPOTS AVAILABLE</span>
<span class="count">5 of 5 open</span>
</div>
<div class="spot-track">
<div class="spot open"></div>
<div class="spot open"></div>
<div class="spot open"></div>
<div class="spot open"></div>
<div class="spot open"></div>
</div>
<div id="countdown">Calculating time remaining…</div>
</div>
<div class="reply-instruction">
<div class="step">Already got the email?</div>
<p>Just hit reply with <span class="keyword">"Deep Dive Session & Integration,"</span> and I'll personally send you the payment link and available dates.</p>
</div>
<div style="text-align:center; margin-top:24px;">
<a href="mailto:fernando@fercoaching.com?cc=fgborrega@gmail.com&subject=Deep%20Dive%20Session%20%26%20Integration&body=I'd%20like%20to%20claim%20a%20spot%20in%20the%20Half-Day%20Deep-Dive%20Breakthrough%20Session%20%26%20Integration." class="btn-primary">Email me to claim a spot →</a>
</div>
<p class="closing-line">This week is the line in the sand. Decide who walks into the second half.</p>
<div class="clarity-box reveal">
<div class="clarity-copy">
<h4>Not sure yet? Start with a free conversation.</h4>
<p>Book a complimentary 15-minute Clarity Call with Fernando — no pitch, no pressure. Just clarity on whether this work is right for you right now.</p>
</div>
<a href="mailto:fernando@fercoaching.com?cc=fgborrega@gmail.com&subject=Free%20Clarity%20Call&body=I'd%20like%20to%20book%20a%20free%2015-minute%20Clarity%20Call." class="btn-clarity">Book a Free Clarity Call →</a>
</div>
<div class="optin-box">
<span class="eyebrow">Not ready yet?</span>
<h3>Stay connected to the Blueprint</h3>
<p>Get the full Back to Center Blueprint breakdown and be first to know when new spots open.</p>
<form class="optin-form" action="PASTE_YOUR_MAILERLITE_FORM_ACTION_URL_HERE" method="post">
<input type="email" name="email" placeholder="Your best email" required>
<button type="submit">Keep Me Posted</button>
</form>
<div class="optin-note">No spam · Unsubscribe anytime · Breakthrough Express Group</div>
</div>
</div>
</section>
<footer>
<div class="wrap">
<div class="brand">FERCOACHING.COM</div>
<p>Burnout Recovery Specialist · Helping leaders transition from burnout to breakthrough</p>
<p>Master Practitioner of NLP, MER & Hypnosis · Pranic Healing · Arhatic Yoga · Los Angeles, CA</p>
<p style="margin-top:14px;">© 2026 Fernando Goncalves Borrega · <a href="mailto:fernando@fercoaching.com" style="color:var(--gold-dim);">fernando@fercoaching.com</a></p>
<div class="social-links" style="display:flex; justify-content:center; gap:24px; margin-top:18px; flex-wrap:wrap;">
<a href="https://www.linkedin.com/in/fercoaching" target="_blank" rel="noopener" style="font-family:monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:#9AABBA; text-decoration:none;">LinkedIn</a>
<a href="https://www.youtube.com/user/fgbortega" target="_blank" rel="noopener" style="font-family:monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:#9AABBA; text-decoration:none;">YouTube</a>
<a href="https://www.facebook.com/FerCoaching/" target="_blank" rel="noopener" style="font-family:monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:#9AABBA; text-decoration:none;">Facebook</a>
<a href="https://www.instagram.com/fercoaching" target="_blank" rel="noopener" style="font-family:monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:#9AABBA; text-decoration:none;">Instagram</a>
</div>
</div>
</footer>
<script>
// Make all reveal elements visible immediately
document.querySelectorAll('.reveal, .ticket, .pillar').forEach(el => {
el.classList.add('visible');
el.style.opacity = '1';
el.style.transform = 'translateY(0)';
});
// Countdown to Sunday July 5 2026 11:59pm Pacific
const deadline = new Date('2026-07-05T23:59:00-07:00');
const el = document.getElementById('countdown');
function updateCountdown() {
const diff = deadline - new Date();
if (diff <= 0) { el.innerHTML = 'Enrollment for this window has closed.'; return; }
const d = Math.floor(diff / 86400000);
const h = Math.floor((diff % 86400000) / 3600000);
const m = Math.floor((diff % 3600000) / 60000);
el.innerHTML = `<span class="num">${d}d ${h}h ${m}m</span> remaining to claim one of 5 spots`;
}
updateCountdown();
setInterval(updateCountdown, 30000);
</script>
</body>
</html>