:root {
  --ink: #f5f7f2;
  --paper: #0a0b0d;
  --panel: #111319;
  --muted: #aeb5af;
  --line: rgba(158, 206, 64, .24);
  --lime: #9ed142;
  --lime-bright: #b9ee55;
  --blue: #0c64c9;
  --orange: #f08a16;
  --navy: #05070c;
  --shadow: rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: 118px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(158, 209, 66, .13), transparent 28%),
    linear-gradient(180deg, #050609 0%, #0b0d12 36%, #050609 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.la-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 90px;
  padding: 12px clamp(16px, 4.8vw, 68px);
  background: rgba(0,0,0,.94);
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 26px);
}

.la-logo {
  display: flex;
  align-items: center;
  flex: 0 1 390px;
  min-width: 250px;
}

.la-logo img {
  width: min(410px, 31vw);
  height: auto;
  object-fit: contain;
}

.la-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 20px);
  margin-left: auto;
}

.la-header nav a,
.nav-menu > a {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.la-header nav a[aria-current="page"],
.nav-submenu a[aria-current="page"] { color: var(--lime); }

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}

.nav-menu > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  vertical-align: middle;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(5, 8, 22, .98);
  box-shadow: 0 18px 46px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease;
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(255,255,255,.1);
  color: var(--lime);
  outline: 0;
}

.header-cta,
.primary-action,
.secondary-action,
.lead-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--lime);
  color: #050609;
  padding: 0 18px;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
  box-shadow: 0 12px 28px rgba(158, 209, 66, .2);
}

.mobility-hero {
  min-height: 650px;
  display: grid;
  align-items: end;
  padding: 78px clamp(18px, 7vw, 112px);
  color: #fff;
  background:
    radial-gradient(circle at 77% 34%, rgba(158, 209, 66, .18), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(3, 5, 8, .94) 38%, rgba(3, 5, 8, .22) 76%, rgba(3, 5, 8, .04) 100%),
    url("assets/martial-flow/martial-flow-brand-hero-v2.png") center top / cover no-repeat;
  border-bottom: 5px solid var(--lime);
  position: relative;
}

.mobility-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 9, .92));
  pointer-events: none;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { letter-spacing: 0; }

h1 {
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(58px, 8.8vw, 118px);
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 0 16px 34px rgba(0,0,0,.44);
}

h1 span,
h1 strong { display: block; }

h1 strong {
  color: var(--lime);
  font-style: italic;
}

.hero-content > p:not(.kicker) {
  max-width: 730px;
  color: rgba(255,255,255,.92);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.secondary-action {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(158, 209, 66, .62);
  box-shadow: none;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background:
    linear-gradient(90deg, rgba(12, 100, 201, .38), transparent 28%),
    var(--navy);
  color: #fff;
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid rgba(158, 209, 66, .22);
}

.proof-row div {
  padding: 28px clamp(18px, 3vw, 40px);
  border-right: 1px solid rgba(255,255,255,.14);
}

.proof-row strong,
.proof-row span { display: block; }

.proof-row strong {
  color: var(--lime);
  font-size: 13px;
  text-transform: uppercase;
}

.proof-row span {
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  line-height: 1.45;
}

.content-section {
  padding: 74px clamp(18px, 7vw, 112px);
}

.trial-offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 42px clamp(18px, 7vw, 112px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,0,0,.96), rgba(9, 22, 38, .9)),
    url("assets/martial-flow/martial-flow-brand-defense-v2.png") center / cover no-repeat;
  border-top: 1px solid rgba(158, 209, 66, .2);
  border-bottom: 1px solid rgba(158, 209, 66, .2);
}

.trial-offer-section h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.trial-offer-section p:not(.kicker) {
  max-width: 860px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading {
  max-width: 890px;
  margin-bottom: 30px;
}

.section-heading h2,
.split-section h2,
.dark-band h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.section-heading p:not(.kicker),
.split-section p,
.dark-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    var(--panel);
  box-shadow: 0 18px 42px var(--shadow);
}

.icon-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: #050609;
  font-weight: 900;
}

.benefit-card strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.55;
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(158, 209, 66, .08), transparent 36%),
    #090b10;
  border-top: 1px solid rgba(158, 209, 66, .16);
  border-bottom: 1px solid rgba(158, 209, 66, .16);
}

.photo-feature img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(158, 209, 66, .34);
  box-shadow: 0 22px 52px var(--shadow);
}

.feature-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.feature-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.skill-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.skill-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.skill-list span { color: var(--muted); }

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 34px;
  align-items: center;
  padding: 68px clamp(18px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(5, 10, 18, .86)),
    url("assets/martial-flow/martial-flow-brand-class-v2.png") center / cover no-repeat;
  color: #fff;
  border-top: 5px solid var(--blue);
  border-bottom: 5px solid var(--lime);
}

.dark-band p { color: rgba(255,255,255,.76); }

.schedule-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schedule-card {
  padding: 22px;
  border: 1px solid rgba(158, 209, 66, .36);
  border-radius: 8px;
  background: rgba(0,0,0,.58);
  box-shadow: 0 18px 42px rgba(0,0,0,.32);
}

.schedule-card-wide { grid-column: 1 / -1; }

.schedule-card strong,
.schedule-card span {
  display: block;
}

.schedule-card strong {
  color: var(--lime);
  font-size: 22px;
}

.schedule-card span {
  margin-top: 7px;
  color: rgba(255,255,255,.8);
}

.movement-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(12, 100, 201, .18), transparent 34%),
    #07090d;
}

.movement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.movement-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px var(--shadow);
}

.movement-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.movement-grid strong,
.movement-grid span {
  display: block;
  padding: 0 18px;
}

.movement-grid strong {
  padding-top: 18px;
  color: #fff;
  font-size: 20px;
}

.movement-grid span {
  padding-bottom: 20px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.flyer-strip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 46px clamp(18px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(158, 209, 66, .09), transparent 42%),
    #090b10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flyer-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.flyer-downloads article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.flyer-downloads img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: 0 24px 58px var(--shadow);
}

.flyer-downloads strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.flyer-downloads .secondary-action {
  width: 100%;
  min-height: 38px;
  font-size: 12px;
}

.flyer-strip h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.4vw, 48px);
}

.flyer-strip p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.flyer-strip .hero-actions { margin-top: 0; }

.flyer-strip .secondary-action {
  color: #fff;
  border-color: rgba(158, 209, 66, .58);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .62fr);
  gap: 34px;
  align-items: start;
  background:
    radial-gradient(circle at 0% 100%, rgba(158, 209, 66, .11), transparent 32%),
    #050609;
}

.schedule-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.schedule-list div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 8px;
}

.schedule-list strong,
.schedule-list span { display: block; }

.schedule-list span {
  margin-top: 5px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px var(--shadow);
}

.lead-form h3 {
  margin: 0 0 4px;
  font-size: 24px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #07090d;
  color: #fff;
  padding: 10px 12px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255,255,255,.46); }

.lead-form textarea {
  min-height: 100px;
  resize: vertical;
}

.lead-form small {
  min-height: 18px;
  color: var(--muted);
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(12, 100, 201, .14), transparent 42%),
    #000;
  color: #fff;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 52px clamp(18px, 7vw, 112px);
}

.site-footer img { width: min(440px, 100%); }

.site-footer p {
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

.site-network-links a {
  color: var(--lime);
  font-weight: 900;
}

@media (max-width: 1320px) {
  html { scroll-padding-top: 178px; }

  .la-header { flex-wrap: wrap; }

  .la-logo img { width: min(420px, 78vw); }

  .la-header nav {
    order: 3;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .la-header nav::-webkit-scrollbar {
    display: none;
  }

  .nav-submenu {
    left: 0;
    transform: translate(0, 8px);
  }

  .nav-menu:hover .nav-submenu,
  .nav-menu:focus-within .nav-submenu { transform: translate(0, 0); }
}

@media (max-width: 1120px) {

  .proof-row,
  .trial-offer-section,
  .benefit-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-feature,
  .dark-band,
  .split-section,
  .flyer-strip {
    grid-template-columns: 1fr;
  }

  .flyer-downloads {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .la-header {
    min-height: 74px;
    padding: 10px 14px;
    gap: 10px;
  }

  .la-logo { min-width: 0; }

  .la-logo img { width: min(280px, 72vw); }

  .header-cta { display: none; }

  .la-header nav {
    flex: 1 1 100%;
    gap: 14px;
    max-width: 100%;
    min-width: 0;
  }

  .hero-content,
  .section-heading,
  .feature-copy,
  .split-section > div {
    min-width: 0;
    max-width: calc(100vw - 36px);
  }

  main,
  section,
  .mobility-hero,
  .content-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mobility-hero {
    min-height: 610px;
    padding: 58px 18px;
    background-position: center, center, center top;
  }

  .proof-row,
  .trial-offer-section,
  .benefit-grid,
  .movement-grid,
  .site-footer,
  .schedule-panel {
    grid-template-columns: 1fr;
  }

  .photo-feature img { min-height: 320px; }

  .skill-list div { grid-template-columns: 1fr; }

  .flyer-downloads { grid-template-columns: 1fr; }
}
