* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.mlpa-body {
  margin: 0;
  background: var(--academy-bg);
  color: var(--academy-text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
.mlpa-site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 5%, rgba(226, 28, 42, 0.12), transparent 28%),
  var(--academy-bg);
}
.mlpa-simple-mode {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: clamp(28px, 6vw, 80px) 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.035) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.02) 50%, transparent 50.2%),
    radial-gradient(circle at 50% 15%, rgba(226, 28, 42, 0.16), transparent 34%);
  background-size: 150px 150px, 150px 150px, auto;
}
.mlpa-simple-mode::before,
.mlpa-simple-mode::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}
.mlpa-simple-mode::before {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.75);
}
.mlpa-simple-mode::after {
  top: 0;
  left: 50%;
  width: min(760px, 90vw);
  height: 5px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--academy-red), transparent);
  box-shadow: 0 0 30px rgba(226, 28, 42, 0.55);
}
.mlpa-simple-logo {
  position: relative;
  z-index: 1;
  width: min(580px, 92vw);
  margin: 0 auto clamp(10px, 3vw, 36px);
}
.mlpa-simple-logo::after {
  content: "";
  position: absolute;
  inset: 22% 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(226, 28, 42, 0.22);
  filter: blur(55px);
}
.mlpa-simple-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.75));
  -webkit-mask-image: radial-gradient(ellipse 64% 62%, #000 62%, transparent 96%);
  mask-image: radial-gradient(ellipse 64% 62%, #000 62%, transparent 96%);
}
.mlpa-simple-mode .mlpa-form-wrap {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 5px solid var(--academy-red);
  background: rgba(9, 9, 10, 0.94);
  backdrop-filter: blur(16px);
}
.mlpa-site a {
  color: inherit;
  text-decoration: none;
}
.mlpa-grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mlpa-header {
  height: 76px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 10, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    height 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}
.mlpa-scrolled .mlpa-header {
  height: 66px;
  background: rgba(7, 7, 8, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}
.mlpa-scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--academy-red);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  box-shadow: 0 0 16px rgba(226, 28, 42, 0.75);
}
.mlpa-wordmark {
  display: flex;
  flex-direction: column;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.9;
}
.mlpa-wordmark span {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.mlpa-wordmark b {
  font-size: 11px;
  color: var(--academy-red);
  letter-spacing: 0.36em;
  margin-top: 6px;
}
.mlpa-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.mlpa-header nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--academy-muted);
}
.mlpa-header nav a:hover {
  color: #fff;
}
.mlpa-nav-cta {
  padding: 11px 18px !important;
  background: var(--academy-red);
  color: #fff !important;
}
.mlpa-menu {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mlpa-hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 70px 6vw 120px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.mlpa-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.07) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      0deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.035) 50%,
      transparent 50.2%
    );
  background-size: 140px 140px;
  opacity: 0.25;
}
.mlpa-hero-lines {
  position: absolute;
  inset: 10% -10% auto 40%;
  height: 65%;
  transform: skewX(-20deg);
  border: 1px solid rgba(226, 28, 42, 0.2);
  box-shadow:
    20px 20px 0 rgba(226, 28, 42, 0.035),
    40px 40px 0 rgba(226, 28, 42, 0.025);
}
.mlpa-hero-copy,
.mlpa-crest-wrap {
  position: relative;
  z-index: 2;
}
.mlpa-kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--academy-red);
  text-transform: uppercase;
}
.mlpa-hero h1,
.mlpa-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.88;
  margin: 17px 0 25px;
}
.mlpa-hero h1 {
  font-size: clamp(64px, 8.2vw, 132px);
  max-width: 700px;
}
.mlpa-hero-copy > p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--academy-muted);
  max-width: 650px;
}
.mlpa-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}
.mlpa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  background: var(--academy-red);
  color: #fff !important;
  border: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(226, 28, 42, 0.22);
  transition: 0.25s;
}
.mlpa-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 38px rgba(226, 28, 42, 0.4);
}
.mlpa-button.outline {
  background: transparent;
  border: 1px solid var(--academy-red);
  box-shadow: none;
}
.mlpa-text-link {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.mlpa-text-link span {
  color: var(--academy-red);
  margin-left: 8px;
}
.mlpa-crest-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mlpa-crest {
  width: min(690px, 52vw);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.75));
  -webkit-mask-image: radial-gradient(
    ellipse 63% 62%,
    #000 62%,
    transparent 96%
  );
  mask-image: radial-gradient(ellipse 63% 62%, #000 62%, transparent 96%);
}
.mlpa-crest-glow {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(226, 28, 42, 0.28), transparent 68%);
  filter: blur(24px);
}
.mlpa-hero-stats {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 1px;
}
.mlpa-hero-stats div {
  padding: 15px 28px;
  border-left: 2px solid var(--academy-red);
  background: rgba(255, 255, 255, 0.035);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.mlpa-hero-stats b {
  font-family: "Barlow Condensed";
  font-size: 18px;
  text-transform: uppercase;
}
.mlpa-hero-stats span {
  font-size: 11px;
  color: var(--academy-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mlpa-section {
  padding: 110px 6vw;
  position: relative;
}
.mlpa-section h2 {
  font-size: clamp(55px, 7vw, 102px);
}
.mlpa-about {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 5vw;
  align-items: start;
  background: linear-gradient(135deg, var(--academy-panel), #0d0d0f);
}
.mlpa-section-number {
  font-family: "Barlow Condensed";
  font-size: 18px;
  color: var(--academy-red);
  border-top: 2px solid var(--academy-red);
  padding-top: 10px;
}
.mlpa-about-copy p,
.mlpa-section-head > p,
.mlpa-schedule-title > p,
.mlpa-apply-copy > p {
  color: var(--academy-muted);
  font-size: 17px;
  line-height: 1.75;
}
.mlpa-principles {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.mlpa-principles > div {
  display: grid;
  grid-template-columns: 50px 150px 1fr;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.mlpa-principles span {
  color: var(--academy-red);
  font-family: "Barlow Condensed";
  font-weight: 700;
}
.mlpa-principles b {
  font-family: "Barlow Condensed";
  font-size: 22px;
  text-transform: uppercase;
}
.mlpa-principles p {
  color: var(--academy-muted);
  font-size: 14px;
}
.mlpa-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.mlpa-section-head h2 {
  margin-bottom: 0;
}
.mlpa-section-head > p {
  max-width: 390px;
}
.mlpa-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 1300px;
}
.mlpa-program {
  --rx: 0deg;
  --ry: 0deg;
  --gx: 50%;
  --gy: 50%;
  min-height: 390px;
  padding: 30px;
  background: var(--academy-panel);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition:
    transform 0.22s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.mlpa-program::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--gx) var(--gy),
    rgba(226, 28, 42, 0.14),
    transparent 35%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.mlpa-program > * {
  position: relative;
  z-index: 1;
}
.mlpa-program:hover {
  transform: translateY(-8px) rotateX(var(--rx)) rotateY(var(--ry));
  border-color: rgba(226, 28, 42, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.mlpa-program:hover::before {
  opacity: 1;
}
.mlpa-program-top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--academy-red);
  font-family: "Barlow Condensed";
  font-weight: 800;
}
.mlpa-program-top i {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  flex: 1;
}
.mlpa-program h3,
.mlpa-coach h3 {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 38px;
  line-height: 1;
  margin: 55px 0 18px;
}
.mlpa-program > p,
.mlpa-coach p {
  color: var(--academy-muted);
  font-size: 15px;
  line-height: 1.7;
}
.mlpa-program footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mlpa-program footer span {
  color: var(--academy-muted);
}
.mlpa-program footer b {
  color: var(--academy-red);
}
.mlpa-coaches {
  background: #0c0c0e;
}
.mlpa-coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mlpa-coach {
  background: var(--academy-panel);
  overflow: hidden;
}
.mlpa-coach-photo {
  height: 390px;
  background: linear-gradient(135deg, #1f2023, #0b0b0c);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 3px solid var(--academy-red);
}
.mlpa-coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.8) contrast(1.08);
}
.mlpa-coach-photo span {
  font-family: "Barlow Condensed";
  font-size: 110px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
}
.mlpa-coach-info {
  padding: 26px;
}
.mlpa-coach h3 {
  font-size: 36px;
  margin: 10px 0;
}
.mlpa-schedule {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: center;
}
.mlpa-schedule-title h2 {
  max-width: 600px;
}
.mlpa-schedule-title > p {
  max-width: 520px;
  margin-bottom: 32px;
}
.mlpa-schedule-board {
  border-top: 5px solid var(--academy-red);
  background: var(--academy-panel);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}
.mlpa-board-head,
.mlpa-board-row {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1.4fr;
  gap: 20px;
  padding: 20px 26px;
}
.mlpa-board-head {
  font-size: 11px;
  color: var(--academy-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
}
.mlpa-board-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}
.mlpa-board-row b {
  font-family: "Barlow Condensed";
  font-size: 23px;
  text-transform: uppercase;
}
.mlpa-board-row span {
  color: var(--academy-muted);
  font-size: 14px;
}
.mlpa-apply {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  background: linear-gradient(145deg, #171719, #0a0a0b);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mlpa-contact-list {
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.mlpa-contact-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mlpa-contact-list span {
  color: var(--academy-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mlpa-contact-list b,
.mlpa-contact-list a {
  font-size: 14px;
}
.mlpa-form-wrap {
  background: var(--academy-bg);
  border-top: 5px solid var(--academy-red);
  padding: 36px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}
.mlpa-form-progress {
  height: 34px;
  margin-bottom: 24px;
  position: relative;
  background: #151517;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--academy-muted);
}
.mlpa-form-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(
    90deg,
    rgba(226, 28, 42, 0.35),
    rgba(226, 28, 42, 0.7)
  );
  transition: width 0.35s;
}
.mlpa-form-progress span,
.mlpa-form-progress b {
  position: relative;
  z-index: 1;
}
.mlpa-form-progress b {
  color: #fff;
}
.mlpa-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mlpa-form-grid .mlpa-full {
  grid-column: 1/-1;
}
.mlpa-form label {
  display: block;
  margin-bottom: 20px;
}
.mlpa-form label > span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--academy-muted);
}
.mlpa-form input,
.mlpa-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  background: #141416;
  color: #fff;
  padding: 14px;
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.mlpa-form input:hover,
.mlpa-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.32);
}
.mlpa-form input:focus,
.mlpa-form textarea:focus {
  border-color: var(--academy-red);
  background: #18181b;
  box-shadow: 0 0 0 3px rgba(226, 28, 42, 0.1);
}
.mlpa-photo-upload > input {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
}
.mlpa-upload-box {
  min-height: 118px;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #141416, #0e0e10);
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 5px 18px;
  cursor: pointer;
  transition: 0.25s;
}
.mlpa-upload-box:hover {
  border-color: var(--academy-red);
  background: #171719;
}
.mlpa-upload-box strong {
  font-family: "Barlow Condensed";
  font-size: 20px;
  text-transform: uppercase;
}
.mlpa-upload-box small {
  grid-column: 1;
  color: var(--academy-muted);
}
.mlpa-upload-box em {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  max-width: 180px;
  color: var(--academy-muted);
  font-style: normal;
  font-size: 12px;
  text-align: right;
  overflow-wrap: anywhere;
}
.mlpa-upload-box.has-file {
  border-style: solid;
  border-color: #36a966;
}
.mlpa-upload-box.has-file em {
  color: #55cf83;
}
.mlpa-upload-box.has-error {
  border-color: var(--academy-red);
}
.mlpa-upload-box.has-error em {
  color: #ff6974;
}
.mlpa-submit {
  position: relative;
  min-width: 220px;
  overflow: hidden;
}
.mlpa-submit i {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mlpaSpin 0.7s linear infinite;
}
.mlpa-submit.loading {
  gap: 11px;
  opacity: 0.8;
  cursor: wait;
}
.mlpa-submit.loading i {
  display: block;
}
@keyframes mlpaSpin {
  to {
    transform: rotate(360deg);
  }
}
.mlpa-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}
.mlpa-consent input {
  width: 17px !important;
  margin-top: 2px;
}
.mlpa-consent span {
  font-size: 12px !important;
  line-height: 1.5;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.mlpa-hp {
  position: absolute !important;
  left: -9999px !important;
}
.mlpa-form-message {
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}
.mlpa-form-message.success {
  background: #153622;
  border-left: 4px solid #39a762;
}
.mlpa-form-message.error {
  background: #3b171a;
  border-left: 4px solid var(--academy-red);
}
.mlpa-footer {
  padding: 45px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  background: #060607;
}
.mlpa-footer img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.mlpa-footer > div {
  display: flex;
  flex-direction: column;
}
.mlpa-footer > div b {
  font-family: "Barlow Condensed";
  font-size: 24px;
}
.mlpa-footer > div span,
.mlpa-footer small {
  font-size: 11px;
  color: var(--academy-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mlpa-footer nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.mlpa-footer small {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 25px;
}
.mlpa-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.mlpa-reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .mlpa-hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .mlpa-hero-copy {
    text-align: center;
    margin: auto;
  }
  .mlpa-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .mlpa-actions {
    justify-content: center;
  }
  .mlpa-crest {
    width: min(680px, 90vw);
  }
  .mlpa-hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 25px;
    grid-column: 1;
    justify-content: center;
  }
  .mlpa-about {
    grid-template-columns: 50px 1fr;
  }
  .mlpa-principles {
    grid-column: 2;
  }
  .mlpa-program-grid,
  .mlpa-coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mlpa-schedule,
  .mlpa-apply {
    grid-template-columns: 1fr;
  }
  .mlpa-section-head {
    align-items: start;
    flex-direction: column;
  }
  .mlpa-section-head > p {
    max-width: 600px;
  }
}
@media (max-width: 700px) {
  .mlpa-simple-mode {
    padding: 20px 12px 45px;
    background-size: 100px 100px, 100px 100px, auto;
  }
  .mlpa-simple-logo {
    width: min(440px, 110vw);
    margin-left: -5vw;
    margin-right: -5vw;
    margin-bottom: 0;
  }
  .mlpa-simple-mode .mlpa-form-wrap {
    padding: 25px 18px;
  }
  .mlpa-header {
    height: 64px;
    padding: 0 18px;
  }
  .mlpa-menu {
    display: block;
  }
  .mlpa-header nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0a0a0b;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .mlpa-header nav.open {
    display: flex;
  }
  .mlpa-header nav a {
    padding: 14px;
  }
  .mlpa-hero {
    min-height: auto;
    padding: 65px 20px 50px;
  }
  .mlpa-hero h1 {
    font-size: 61px;
  }
  .mlpa-hero-copy > p {
    font-size: 16px;
  }
  .mlpa-actions {
    display: grid;
    gap: 18px;
  }
  .mlpa-crest {
    width: 105vw;
    margin-left: -2.5vw;
  }
  .mlpa-hero-stats {
    display: grid;
    width: 100%;
    gap: 7px;
  }
  .mlpa-hero-stats div {
    justify-content: center;
  }
  .mlpa-section {
    padding: 75px 20px;
  }
  .mlpa-section h2 {
    font-size: 55px;
  }
  .mlpa-about {
    grid-template-columns: 1fr;
  }
  .mlpa-section-number {
    width: 45px;
  }
  .mlpa-principles {
    grid-column: 1;
  }
  .mlpa-principles > div {
    grid-template-columns: 35px 1fr;
  }
  .mlpa-principles p {
    grid-column: 2;
  }
  .mlpa-program-grid,
  .mlpa-coach-grid {
    grid-template-columns: 1fr;
  }
  .mlpa-program {
    min-height: 340px;
  }
  .mlpa-coach-photo {
    height: 360px;
  }
  .mlpa-board-head,
  .mlpa-board-row {
    grid-template-columns: 0.8fr 1fr 1.3fr;
    padding: 16px 14px;
    gap: 10px;
  }
  .mlpa-form-wrap {
    padding: 25px 18px;
  }
  .mlpa-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mlpa-footer {
    grid-template-columns: 65px 1fr;
  }
  .mlpa-footer img {
    width: 65px;
    height: 65px;
  }
  .mlpa-footer nav {
    grid-column: 1/-1;
  }
  .mlpa-footer small {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .mlpa-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mlpa-program,
  .mlpa-program:hover {
    transform: none;
  }
  .mlpa-submit i {
    animation: none;
  }
}
