Mind Within Fencing

https://cdn.tailwindcss.com

/* WORDPRESS ISOLATION RESET – Prevents Theme CSS Overrides */
#mw-fencing-app, #mw-fencing-app * {
box-sizing: border-box !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

#mw-fencing-app {
font-family: ‘Inter’, sans-serif !important;
background-color: #1a2340 !important;
color: #ffffff !important;
width: 100% !important;
margin: 0 auto !important;
padding: 0 !important;
line-height: 1.5 !important;
text-align: left !important;
overflow-x: hidden !important;
}

#mw-fencing-app a {
text-decoration: none !important;
color: inherit;
}

#mw-fencing-app p {
margin-top: 0 !important;
margin-bottom: 1rem !important;
}

#mw-fencing-app h1, #mw-fencing-app h2, #mw-fencing-app h3, #mw-fencing-app h4 {
font-family: ‘Cinzel’, serif !important;
color: #ffffff !important;
margin-top: 0 !important;
line-height: 1.2 !important;
}

#mw-fencing-app input,
#mw-fencing-app select,
#mw-fencing-app button {
font-family: ‘Inter’, sans-serif !important;
outline: none !important;
}

/* Custom Theme Colors */
.font-serif-logo { font-family: ‘Cinzel’, serif !important; }
.bg-navy-main { background-color: #212c4d !important; }
.bg-navy-dark { background-color: #172038 !important; }
.bg-teal-btn { background-color: #388499 !important; }
.bg-teal-btn:hover { background-color: #2e6c80 !important; }
.bg-card-beige { background-color: #e3ded8 !important; color: #222222 !important; }

/* Smooth Scroll */
html { scroll-behavior: smooth; }

Mind Within
Fencing

Join to unlock your full fencing potential.

Fencer holding foil and mask


What do we do?

We help regulate your emotional and physiological response to stress on the strip to improve your performance while fencing.

We measure the effectiveness of visualization by tracking your heart rate and recording your emotional state.

By signing up, you will constantly have access to visually observe your recorded data throughout the process of your journey.


Experience?

We have been training and competing in epee since 2021. So far, we have participated in tournaments around both the U.S. and internationally for 5 years. We have competed in all levels: including Local, High School Teams, North American Cups, National Championships, and World Cups.

Why Us?

As competitive fencers, we understand how heart rate doesn’t illustrate the whole story. Having a lower heart rate or less anxiety does not always correlate to better performance. It can mean different things in different contexts. A higher heart rate can indicate a fencer is losing control over the bout or frustration from an unfair call, but can also show a fencer strategically increasing pressure on the opponent and taking initiative. In addition, fencing is a mental game of out-smarting your opponent. In order to be actively thinking and prepared, fencers may need to lower their heart rate to see what is happening in the bout or raise their heart rate to make their actions sharper and have a faster reaction time.


Fencing Bout Action

Full Name

DOB

Email Address

Choose your league

Select League
Junior’s League
Youth League
Seniors League

Your data is kept private with MW Fencing. Never share your password.


Fencer Posing

Email Address

Password

© 2026 MW Fencing (Mind Within Fencing). All rights reserved.

(function() {
// Mobile menu toggle
const menuToggle = document.getElementById(‘menu-toggle’);
const mobileMenu = document.getElementById(‘mobile-menu’);
if (menuToggle && mobileMenu) {
menuToggle.addEventListener(‘click’, () => {
mobileMenu.classList.toggle(‘hidden’);
});
}

// Notification Toast Helper
const toast = document.getElementById(‘toast’);
const toastMsg = document.getElementById(‘toast-message’);

function showToast(message) {
if (toast && toastMsg) {
toastMsg.textContent = message;
toast.classList.remove(‘hidden’);
setTimeout(() => {
toast.classList.add(‘hidden’);
}, 4000);
}
}

// Form Event Handlers
const signupForm = document.getElementById(‘signup-form’);
if (signupForm) {
signupForm.addEventListener(‘submit’, (e) => {
e.preventDefault();
showToast(‘Registration submitted! Welcome to MW Fencing.’);
signupForm.reset();
});
}

const loginForm = document.getElementById(‘login-form’);
if (loginForm) {
loginForm.addEventListener(‘submit’, (e) => {
e.preventDefault();
showToast(‘Logged in successfully!’);
loginForm.reset();
});
}
})();