@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Oxanium:wght@600;700;800&display=swap');

/* ════════════════════════════════════════════════════════════════
   VARIABLES
   Burgundy replaces safe red. Warmer ivory. Deeper shadow.
════════════════════════════════════════════════════════════════ */
:root {
  color-scheme: dark;
  --ma-bg:            #09090c;
  --ma-bg-raised:     #0e0f13;
  --ma-ivory:         #f2ede5;
  --ma-ivory-deep:    #ece6dd;
  --ma-text:          #fff;
  --ma-text-soft:     rgba(255,255,255,.72);
  --ma-text-muted:    rgba(255,255,255,.44);
  --ma-ink:           #111214;
  --ma-ink-soft:      #2d2925;
  --ma-ink-muted:     #5a5248;
  --ma-line-dark:     rgba(18,19,21,.07);
  --ma-line-light:    rgba(255,255,255,.06);
  --ma-red:           #8b1a1a;
  --ma-red-deep:      #6e1414;
  --ma-red-glow:      rgba(139,26,26,.18);
  --ma-shell:         min(1380px, calc(100vw - 64px));
  --ma-shell-narrow:  min(900px,  calc(100vw - 64px));
  --ma-r:             6px;
  --ma-r-lg:          12px;
  --ma-shadow-card:   0 1px 2px rgba(0,0,0,.08), 0 8px 28px rgba(0,0,0,.09);
  --ma-shadow-deep:   0 24px 72px rgba(0,0,0,.36), 0 4px 16px rgba(0,0,0,.18);
  --ma-shadow-up:     0 -8px 40px rgba(0,0,0,.18);
  --ma-space:         132px;
  --ma-space-mobile:  76px;
  --ma-topbar-h:      40px;
  --ma-nav-h:         80px;
  --ma-transition:    .22s cubic-bezier(.4,0,.2,1);
}

/* ════════════════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ma-bg);
  color: var(--ma-text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

[hidden] { display: none !important; }

/* ── Anchor offset ────────────────────────────────────────────
   Accounts for fixed nav height so section anchors land correctly
   when nav is visible, and cleanly when nav has slid away.
───────────────────────────────────────────────────────────── */
section[id], div[id="top"] {
  scroll-margin-top: calc(var(--ma-topbar-h) + var(--ma-nav-h) + 16px);
}
@media (max-width: 991px) {
  section[id] { scroll-margin-top: 80px; }
}

img, svg { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; padding: 0; }
p  { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════════════════════════════ */
.ma-skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.ma-skip-link:focus {
  left: 12px; top: 12px; width: auto; height: auto;
  padding: 12px 16px; background: #fff; color: #000;
  font-weight: 700; font-size: 14px; z-index: 9999;
  border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
*:focus-visible {
  outline: 2px solid var(--ma-red);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════════
   LAYOUT — SHELL + SECTIONS
════════════════════════════════════════════════════════════════ */
.ma-shell         { width: var(--ma-shell);        margin: 0 auto; }
.ma-shell--narrow { width: var(--ma-shell-narrow); margin: 0 auto; }

.ma-section { position: relative; padding: var(--ma-space) 0; overflow: hidden; }

/* Problem section — extra bottom padding so text scrolls fully against sticky image */
#problem { padding-bottom: calc(var(--ma-space) * 1.8); overflow: visible; }
#cost    { padding-bottom: calc(var(--ma-space) * 1.8); overflow: visible; }
#about   { padding-bottom: calc(var(--ma-space) * 2.2); overflow: visible; }
.ma-section--deep    { background: var(--ma-bg); }
.ma-section--ivory,
.ma-section--proof,
.ma-section--contact { background: var(--ma-ivory); color: var(--ma-ink); }

/* Diagonal edge — dark sections get a sliced bottom */
.ma-section--deep::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
/* Ivory sections get a sliced top — mirrors the dark diagonal */
.ma-section--ivory::before,
.ma-section--contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--ma-bg);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 0;
}
/* Proof section gets neither — it is a visual pause */
.ma-section--proof::before { display: none; }
.ma-section--proof::after  { display: none; }

/* Ensure shell sits above the diagonal overlays */
.ma-section > .ma-shell { position: relative; z-index: 1; }

/* Pathways — dark with warm red undercurrent */
.ma-section--pathways {
  overflow: hidden;
}
.ma-section--pathways::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/misc/magna_speaking.png');
  background-size: cover;
  background-position: center 30%;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.ma-section--pathways::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(9,9,12,.82) 0%,
      rgba(9,9,12,.64) 28%,
      rgba(9,9,12,.88) 72%,
      rgba(9,9,12,.98) 100%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(139,26,26,.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   Maximal contrast between display and text weights.
   Headings feel monumental. Body feels considered.
════════════════════════════════════════════════════════════════ */
h1, h2, h3 {
  font-family: 'Oxanium', sans-serif;
  line-height: 1.0;
  letter-spacing: -.025em;
  font-weight: 800;
}
h1 {
  font-size: clamp(44px, 5.5vw, 92px);
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .97;
}
h2 {
  font-size: clamp(30px, 3.2vw, 58px);
  line-height: 1.02;
}
h3 {
  font-size: clamp(15px, 1.3vw, 21px);
  font-weight: 700;
  letter-spacing: -.015em;
}

/* Eyebrow — wider tracking, lighter weight */
.ma-eyebrow {
  display: block;
  margin: 0 0 18px;
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(18,19,21,.36);
}
.ma-section--deep .ma-eyebrow { color: var(--ma-text-muted); }

/* Lead text — clearly larger than body, not quite heading */
.ma-lead {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.48;
  font-weight: 500;
  color: var(--ma-text-soft);
  letter-spacing: -.01em;
}
.ma-section-lead {
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  color: #1e1b18;
  letter-spacing: -.01em;
}
.ma-section-lead--light { color: rgba(255,255,255,.78); font-weight: 400; }

/* Impact lines */
.ma-impact { font-weight: 800; color: #fff; font-size: 18px; letter-spacing: -.01em; }
.ma-impact--dark { color: var(--ma-ink); }

/* Hero span */
.ma-hero h1 span { color: var(--ma-red); }

/* GM inner voice — thin, italic, clearly subordinate */
.ma-hero__gm-voice {
  display: block;
  font-style: italic;
  font-size: clamp(13px, .9vw, 15px);
  font-weight: 300;
  color: rgba(255,255,255,.36);
  letter-spacing: .02em;
  margin-bottom: 28px;
  max-width: 36ch;
  line-height: 1.7;
  text-shadow: 0 0 22px rgba(255,255,255,.07);
}
.ma-gm-voice {
  display: block;
  font-style: italic;
  font-size: clamp(12px, .85vw, 14px);
  font-weight: 300;
  color: rgba(255,255,255,.32);
  letter-spacing: .02em;
  margin-bottom: 28px;
  max-width: 42ch;
  line-height: 1.7;
  text-shadow: 0 0 18px rgba(255,255,255,.06);
}

/* Blockquote */
.ma-quote {
  margin: 36px 0 28px;
  padding: 0 0 0 24px;
  border-left: 1px solid rgba(139,26,26,.7);
  font-size: clamp(19px, 1.6vw, 28px);
  line-height: 1.26;
  color: #fff;
  max-width: 24ch;
  font-weight: 400;
  letter-spacing: -.015em;
}
.ma-quote--dark { color: var(--ma-ink); }

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   Primary is burgundy. Ghost is a hairline border, no fill.
   Both feel intentional not generic.
════════════════════════════════════════════════════════════════ */
.ma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background var(--ma-transition),
    border-color var(--ma-transition),
    color var(--ma-transition),
    transform var(--ma-transition),
    box-shadow var(--ma-transition);
}
.ma-btn--primary {
  background: var(--ma-red);
  border-color: var(--ma-red);
  color: #fff;
  box-shadow: 0 2px 12px rgba(139,26,26,.28);
}
.ma-btn--primary:hover {
  background: var(--ma-red-deep);
  border-color: var(--ma-red-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,26,26,.36);
}
.ma-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.74);
}
.ma-btn--ghost:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════════
   HEADER
   Glass effect. Topbar lighter. Nav slightly denser.
   Active nav state on scroll via JS class.
════════════════════════════════════════════════════════════════ */
.ma-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1100;
}


.ma-topbar {
  min-height: var(--ma-topbar-h);
  background: rgba(9,9,12,.16);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}
.ma-topbar__inner {
  min-height: var(--ma-topbar-h);
  display: flex; justify-content: space-between; align-items: center;
}
.ma-topbar__insight,
.ma-topbar__actions a {
  color: rgba(255,255,255,.52);
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: color var(--ma-transition);
}
.ma-topbar__insight:hover,
.ma-topbar__actions a:hover { color: rgba(255,255,255,.88); }
.ma-topbar__actions { display: flex; gap: 24px; }

.ma-nav {
  background: rgba(9,9,12,.28);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition:
    transform .36s cubic-bezier(.4,0,.2,1),
    background .24s ease,
    box-shadow .24s ease;
}
.ma-nav.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
.ma-nav__inner {
  min-height: var(--ma-nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
}
.ma-brand img { height: 36px; width: auto; }

.ma-menu { display: flex; justify-content: center; gap: 28px; }
.ma-menu a {
  position: relative;
  color: rgba(255,255,255,.62);
  font: 700 11px/1 'Oxanium', sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  transition: color var(--ma-transition);
  padding-bottom: 4px;
}
.ma-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--ma-red);
  transition: right var(--ma-transition);
}
.ma-menu a:hover        { color: #fff; }
.ma-menu a:hover::after { right: 0; }
.ma-menu a.is-active    { color: #fff; }
.ma-menu a.is-active::after { right: 0; }

.ma-nav__actions { display: flex; align-items: center; gap: 14px; }

/* Burger */
.ma-burger {
  display: none; width: 44px; height: 44px;
  position: relative; cursor: pointer;
}
.ma-burger span {
  position: absolute; left: 11px; right: 11px;
  height: 1px; background: rgba(255,255,255,.8);
  transition: all var(--ma-transition);
}
.ma-burger span:first-child { top: 17px; }
.ma-burger span:last-child  { top: 27px; }
.ma-burger[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(45deg); }
.ma-burger[aria-expanded="true"] span:last-child  { transform: translateY(-5px) rotate(-45deg); }

/* Mobile panel */
.ma-menu-panel {
  background: rgba(9,9,12,.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.ma-menu-panel__nav {
  width: var(--ma-shell); margin: 0 auto;
  padding: 24px 0 36px; display: grid;
}
.ma-menu-panel__nav a {
  display: block; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  font: 700 12px/1 'Oxanium', sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  transition: color var(--ma-transition), padding-left var(--ma-transition);
}
.ma-menu-panel__nav a:hover { color: #fff; padding-left: 8px; }

.ma-header.is-solid .ma-nav {
  background: rgba(9,9,12,.52);
  box-shadow: 0 6px 24px rgba(0,0,0,.16);
}

/* ════════════════════════════════════════════════════════════════
   HERO
   Image breathes — overlay lightened on right.
   Copy bottom-anchored. GM voice above H1.
   Slow Ken Burns scale on load.
════════════════════════════════════════════════════════════════ */
.ma-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.ma-hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 62% center;
  transform-origin: center;
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0);  }
}
.ma-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(9,9,12,.72)  0%,
    rgba(9,9,12,.50) 32%,
    rgba(9,9,12,.22) 58%,
    rgba(9,9,12,.07) 78%,
    rgba(9,9,12,.01) 100%
  );
}
/* Vignette at bottom */
.ma-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 28%;
  background: linear-gradient(to top, rgba(9,9,12,.82) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.ma-hero__content {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--ma-topbar-h) + var(--ma-nav-h) + 80px) 0 88px;
}
.ma-hero__copy {
  max-width: 600px;
  animation: heroFadeUp .9s .2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ma-hero h1 {
  max-width: 13ch;
  margin-bottom: 28px;
}
.ma-hero__actions {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.ma-hero__micro {
  margin-top: 24px;
  font: 500 10px/1 'Oxanium', sans-serif;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.34);
}

/* ════════════════════════════════════════════════════════════════
   SPLIT LAYOUT
════════════════════════════════════════════════════════════════ */
.ma-split {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1fr);
  gap: clamp(40px, 5.5vw, 96px);
  align-items: start;
}
.ma-split--about   { align-items: start; }
.ma-split--reverse { grid-template-columns: minmax(0,1fr) minmax(0,.92fr); }

.ma-sticky-media {
  position: sticky;
  top: calc(var(--ma-topbar-h) + 32px);
}

.ma-media-card,
.ma-portrait {
  overflow: hidden;
  border-radius: var(--ma-r-lg);
  box-shadow: var(--ma-shadow-deep);
  background: #0e0f13;
}
.ma-media-card img,
.ma-portrait img {
  width: 100%;
  height: min(82vh, 900px);
  object-fit: cover;
  object-position: center center;
  transition: transform 8s ease;
}
.ma-media-card:hover img { transform: scale(1.02); }
.ma-portrait img { object-position: 54% 15%; }
.ma-media-card--ivory {
  box-shadow: var(--ma-shadow-card);
}

/* Second portrait — Stanley Cup — smaller, offset, below primary */
.ma-portrait--secondary {
  margin-top: 16px;
  position: relative;
}
.ma-portrait--secondary img {
  height: min(82vh, 900px);
  object-position: center 38%;
}
.ma-portrait__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to top, rgba(9,9,12,.72) 0%, transparent 100%);
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  border-radius: 0 0 var(--ma-r-lg) var(--ma-r-lg);
}

.ma-copy { max-width: 620px; padding-top: 6px; }
.ma-copy > p { color: var(--ma-text-soft); font-size: 16px; line-height: 1.82; font-weight: 400; }
.ma-section--ivory .ma-copy > p  { color: #2a2520; }

/* ════════════════════════════════════════════════════════════════
   MINI GRID + CASE LINE + BLOCKQUOTE
════════════════════════════════════════════════════════════════ */
.ma-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px; margin-top: 28px;
}
.ma-mini-grid article {
  padding: 22px 20px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--ma-r);
  transition: background var(--ma-transition), border-color var(--ma-transition);
}
.ma-mini-grid article:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
.ma-mini-grid h3 { margin-bottom: 8px; color: rgba(255,255,255,.92); }
.ma-mini-grid p  { margin: 0; color: var(--ma-text-muted); font-size: 14px; line-height: 1.68; }

.ma-case-line {
  display: flex; flex-wrap: wrap; gap: 0;
  margin: 28px 0 22px;
  padding-left: 18px;
  border-left: 1px solid var(--ma-red);
}
.ma-case-line span {
  font: 700 11px/1 'Oxanium', sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.48);
}
.ma-case-line span:not(:last-child)::after {
  content: "·"; margin: 0 12px; color: rgba(255,255,255,.20);
}

.ma-impact { display: block; font-weight: 800; color: #fff; font-size: 18px; letter-spacing: -.01em; margin: 20px 0; }
.ma-impact--dark { color: var(--ma-ink); }

.ma-section-close {
  margin-top: 36px;
  font: 500 11px/1.5 'Oxanium', sans-serif;
  letter-spacing: .12em;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   SECTION INTROS
════════════════════════════════════════════════════════════════ */
.ma-center-intro {
  max-width: 840px; margin: 0 auto 56px; text-align: center;
}
.ma-center-intro h2 { margin-bottom: 18px; }
.ma-center-intro p:last-child { margin-bottom: 0; }
.ma-center-intro--left { max-width: 680px; margin: 0 0 44px; text-align: left; }

/* ════════════════════════════════════════════════════════════════
   COST SECTION
   Cards on ivory feel like fine stationery — no heavy shadows.
════════════════════════════════════════════════════════════════ */
.ma-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.ma-cost-card {
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid rgba(18,19,21,.06);
  border-radius: var(--ma-r);
  box-shadow: 0 2px 8px rgba(18,19,21,.05);
  transition: box-shadow var(--ma-transition), transform var(--ma-transition);
}
.ma-cost-card:hover {
  box-shadow: 0 8px 28px rgba(18,19,21,.10);
  transform: translateY(-2px);
}
.ma-cost-card h3 {
  margin-bottom: 10px; color: var(--ma-ink);
  font-size: clamp(14px, 1vw, 16px);
}
.ma-cost-card > p:last-child {
  margin: 0; color: var(--ma-ink-soft);
  line-height: 1.68; font-size: 14px;
}
.ma-cost-card__gm {
  font-style: italic; font-size: 12px; font-weight: 400;
  color: #4a4038; line-height: 1.6;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(18,19,21,.07);
  letter-spacing: .01em;
}
.ma-bridge { margin-top: 32px; }

/* ════════════════════════════════════════════════════════════════
   PLAN SECTION
   Steps feel like a sequence, not a grid.
   Number in red — the only colour in a dark field.
════════════════════════════════════════════════════════════════ */
.ma-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--ma-r-lg);
  overflow: hidden;
}
.ma-plan-step {
  padding: 36px 32px;
  background: var(--ma-bg-raised);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--ma-transition);
}
.ma-plan-step:last-child { border-right: none; }
.ma-plan-step:hover { background: rgba(255,255,255,.03); }
.ma-plan-step__number {
  display: block;
  margin-bottom: 18px;
  color: var(--ma-red);
  font: 800 24px/1 'Oxanium', sans-serif;
  letter-spacing: -.02em;
  opacity: .82;
}
.ma-plan-step h3 { margin-bottom: 14px; color: #fff; }
.ma-plan-step p  { margin: 0; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.8; }

.ma-plan-cta {
  margin-top: 56px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
.ma-plan-cta p {
  margin: 0; color: var(--ma-text-muted);
  font: 500 11px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   PATHWAYS SECTION
   Dark world — same visual family as the plan steps.
   Lanes live on the dark background, not against it.
   Left accent bar is the only colour. Ghosted number is white.
════════════════════════════════════════════════════════════════ */
.ma-pathways-rail {
  display: grid;
  gap: 14px;
}

/* Lane — dark raised surface, separated with breathing room */
.ma-lane {
  position: relative;
  background: var(--ma-bg-raised);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--ma-r-lg);
  overflow: hidden;
  transition: background var(--ma-transition), border-color var(--ma-transition), transform var(--ma-transition);
}
.ma-lane:hover {
  background: rgba(255,255,255,.036);
  border-color: rgba(255,255,255,.11);
  transform: translateY(-2px);
}

/* Left accent bar — the only strong colour per path */
.ma-lane::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(255,255,255,.10);
}
.ma-lane:first-child::before { background: rgba(139,26,26,.44); }
.ma-lane--featured::before   { background: var(--ma-red); }
.ma-lane:last-child::before  { background: rgba(255,255,255,.18); }

/* Featured — top border red accent, slightly warmer surface */
.ma-lane--featured {
  background: rgba(139,26,26,.06);
  border-color: rgba(139,26,26,.18);
}
.ma-lane--featured:hover {
  background: rgba(139,26,26,.09);
  border-color: rgba(139,26,26,.28);
}

/* Ghosted number — white, very faint, deep editorial feel */
.ma-lane__meta {
  position: absolute;
  top: 12px; right: 28px;
  font: 800 clamp(80px, 9vw, 140px)/1 'Oxanium', sans-serif;
  color: #fff;
  opacity: .028;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}

/* Path label pill */
.ma-lane__situation {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.ma-lane--featured .ma-lane__situation {
  background: rgba(139,26,26,.18);
  color: rgba(255,255,255,.62);
}

/* Body — left-padded to clear accent bar */
.ma-lane__body {
  padding: 32px 120px 0 32px;
}
.ma-lane__body h3 {
  color: #fff;
  font-size: clamp(17px, 1.4vw, 22px);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.ma-lane__headline {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.52);
  line-height: 1.55;
  margin: 0 0 16px;
}
.ma-lane__body > p {
  color: var(--ma-text-muted);
  font-size: 15px;
  line-height: 1.74;
  margin: 0;
  max-width: 68ch;
}

/* Outcome block — contained dark panel, red left border on featured */
.ma-lane__outcome {
  margin: 22px 32px 30px;
  padding: 18px 22px;
  background: rgba(0,0,0,.18);
  border-radius: var(--ma-r);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 2px solid rgba(255,255,255,.12);
}
.ma-lane--featured .ma-lane__outcome {
  border-left: 2px solid var(--ma-red);
  background: rgba(139,26,26,.06);
}
.ma-lane__outcome strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.38);
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ma-lane__outcome p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.72;
}

/* Path note */
.ma-path-note {
  max-width: 680px; margin: 48px auto 0; text-align: center;
  color: rgba(255,255,255,.44);
  font-size: clamp(14px, 1vw, 17px); line-height: 1.65;
}
.ma-path-note p { margin-bottom: 8px; }
.ma-path-note p:last-child { margin: 0; }
.ma-path-note__sub {
  font: 600 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-top: 14px; display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .ma-lane__body    { padding: 26px 80px 0 28px; }
  .ma-lane__outcome { margin: 18px 28px 26px; }
}
@media (max-width: 767px) {
  .ma-pathways-rail { gap: 0; }
  .ma-lane__body    { padding: 22px 24px 0 22px; }
  .ma-lane__outcome { margin: 16px 22px 24px; }
  .ma-lane__meta    { font-size: 80px; right: 16px; }
}

/* ════════════════════════════════════════════════════════════════
   LEAD GENERATOR / DIAGNOSTIC
════════════════════════════════════════════════════════════════ */
.ma-lead-gen {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(40px, 5.5vw, 80px); align-items: center;
}
.ma-lead-gen__copy { max-width: 520px; }
.ma-lead-gen__copy .ma-btn { margin-top: 12px; }
.ma-lead-gen__note {
  margin-top: 16px;
  font: 500 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(18,19,21,.36);
}
.ma-lead-gen__visual { display: flex; justify-content: center; }

.ma-diagnostic-card {
  width: 100%; max-width: 440px;
  background: var(--ma-bg-raised);
  border-radius: var(--ma-r-lg); overflow: hidden;
  box-shadow: var(--ma-shadow-deep);
  border: 1px solid rgba(255,255,255,.06);
}
.ma-diagnostic-card__header {
  padding: 30px 30px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ma-diagnostic-card__header h3 {
  margin-top: 12px; color: #fff;
  font-size: clamp(18px, 1.4vw, 22px);
}
.ma-diagnostic-card__questions {
  padding: 24px 30px; display: grid; gap: 20px;
}
.ma-diagnostic-q {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px; align-items: start;
}
.ma-diagnostic-q__num {
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .18em; color: var(--ma-red); padding-top: 4px;
}
.ma-diagnostic-q p {
  margin: 0; color: rgba(255,255,255,.58);
  font-size: 14px; line-height: 1.64;
}
.ma-diagnostic-card__footer {
  padding: 16px 30px 26px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ma-diagnostic-card__footer span {
  font: 500 10px/1 'Oxanium', sans-serif;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.26);
}

/* ════════════════════════════════════════════════════════════════
   PROOF SECTION
════════════════════════════════════════════════════════════════ */
.ma-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px; margin-bottom: 40px;
}
.ma-proof-stat {
  background: #fff;
  border: 1px solid rgba(18,19,21,.06);
  border-radius: var(--ma-r);
  box-shadow: 0 2px 8px rgba(18,19,21,.05);
  padding: 26px 24px;
}
.ma-proof-stat__value {
  display: block; margin-bottom: 8px; color: var(--ma-ink);
  font: 800 clamp(16px, 1.6vw, 22px)/1.1 'Oxanium', sans-serif;
  letter-spacing: -.025em;
}
.ma-proof-stat__label {
  display: block; color: #3d3530;
  font-size: 13px; font-weight: 500; line-height: 1.48;
}

.ma-proof-origin {
  max-width: 560px; margin: 0 auto 44px; text-align: center;
  padding: 22px 28px;
  border: 1px solid rgba(18,19,21,.09);
  border-radius: var(--ma-r);
  background: rgba(18,19,21,.03);
}
.ma-proof-origin p {
  margin: 0; font-size: 14px; line-height: 1.76;
  color: var(--ma-ink-muted); font-style: italic; font-weight: 400;
}

/* Testimonials */
.ma-testimonials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.ma-testimonial {
  background: #fff; color: var(--ma-ink);
  border: 1px solid rgba(18,19,21,.06);
  border-radius: var(--ma-r);
  box-shadow: 0 2px 8px rgba(18,19,21,.05);
  padding: 24px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--ma-transition), transform var(--ma-transition);
}
.ma-testimonial:hover {
  box-shadow: 0 10px 32px rgba(18,19,21,.12);
  transform: translateY(-2px);
}
.ma-testimonial__head {
  display: flex; gap: 12px; align-items: center; margin-bottom: 16px;
}
.ma-testimonial__head img {
  width: 50px; height: 50px; border-radius: 4px;
  object-fit: cover; flex-shrink: 0;
  background: var(--ma-ivory);
  filter: grayscale(8%) contrast(1.04);
}
.ma-testimonial__head h3 {
  font-size: 15px; margin-bottom: 3px; color: var(--ma-ink);
}
.ma-testimonial__head p {
  margin: 0; color: var(--ma-ink-muted); font-size: 12px; line-height: 1.44;
}
.ma-testimonial__kicker {
  margin-bottom: 12px; color: var(--ma-red);
  font-weight: 700; font-size: 13px; line-height: 1.4;
  min-height: 54px; letter-spacing: -.005em;
}
.ma-testimonial__text {
  margin: 0; color: #1e1b18;
  font-size: 14px; line-height: 1.74; flex: 1; font-weight: 400;
}
.ma-testimonial__full { display: none; }
.ma-testimonial.is-open .ma-testimonial__full { display: inline; }
.ma-toggle {
  margin-top: 16px; padding: 0; border: 0; background: transparent;
  color: var(--ma-red); font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .16em; text-transform: uppercase; align-self: flex-start;
  transition: opacity var(--ma-transition);
}
.ma-toggle:hover { opacity: .6; }

/* Featured — institutional voices */
.ma-testimonial--featured {
  grid-column: span 2;
  border-top: 2px solid var(--ma-red);
}
.ma-testimonial--featured .ma-testimonial__head img {
  width: 56px; height: 56px;
}
.ma-testimonial--featured .ma-testimonial__kicker {
  font-size: 15px; min-height: 0; margin-bottom: 16px;
}
.ma-testimonial--featured .ma-testimonial__text {
  font-size: 15px; line-height: 1.76;
}

.ma-proof-cta { margin-top: 40px; text-align: center; }
.ma-proof-cta p { margin: 0 0 6px; color: var(--ma-ink-muted); font-size: 14px; }
.ma-proof-cta a {
  color: var(--ma-ink); font-weight: 700; font-size: 14px;
  transition: opacity var(--ma-transition);
}
.ma-proof-cta a:hover { opacity: .6; }

/* ════════════════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════════════════ */
.ma-cred-grid {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px;
}
.ma-cred-grid div {
  padding: 16px 18px;
  background: rgba(18,19,21,.04);
  border: 1px solid rgba(18,19,21,.07);
  color: var(--ma-ink-soft); font-size: 14px; line-height: 1.52;
  border-radius: var(--ma-r);
}
.ma-cred-grid span {
  display: block; margin-bottom: 5px;
  color: rgba(18,19,21,.38);
  font: 700 9px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAND
   Logos use explicit classes for reliable sizing.
════════════════════════════════════════════════════════════════ */
.ma-trust-band {
  background: var(--ma-bg-raised);
  padding: 40px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), inset 0 -1px 0 rgba(255,255,255,.04);
}
.ma-trust-band__eyebrow {
  margin-bottom: 28px;
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.24); text-align: center;
}
.ma-trust-band__logos {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: clamp(20px, 4.5vw, 56px); padding: 0 24px;
}
.ma-logo {
  display: block; object-fit: contain;
  opacity: 0.72;
  filter: grayscale(100%) brightness(1.8) contrast(1.1);
  transition: opacity .28s ease, filter .28s ease;
}
.ma-logo:hover { opacity: 1; filter: grayscale(0%) brightness(1.0) contrast(1.0); }
.ma-logo--shl      { height: 36px; max-width: 80px; }
.ma-logo--snl      { height: 42px; max-width: 66px; }
.ma-logo--del      { height: 36px; max-width: 82px; }
.ma-logo--nhl      { height: 48px; max-width: 50px; }
.ma-logo--olympics { height: 28px; max-width: 96px; }
.ma-logo--chl      { height: 36px; max-width: 66px; }

/* ════════════════════════════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════════════════════════ */
.ma-faq {
  border-top: 1px solid rgba(255,255,255,.08);
}
.ma-faq__item { border-bottom: 1px solid rgba(255,255,255,.08); }
.ma-faq__question {
  width: 100%; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  color: rgba(255,255,255,.84);
  font: 500 16px/1.4 'Manrope', sans-serif;
  text-align: left;
  transition: color var(--ma-transition);
}
.ma-faq__question:hover { color: #fff; }
.ma-faq__question span:last-child {
  font: 300 22px/1 'Manrope', sans-serif;
  color: rgba(255,255,255,.3); flex-shrink: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), color var(--ma-transition);
}
.ma-faq__item.is-open .ma-faq__question span:last-child {
  transform: rotate(45deg); color: var(--ma-red);
}
.ma-faq__answer { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.ma-faq__answer p {
  margin: 0 0 28px; color: rgba(255,255,255,.58);
  font-size: 15px; line-height: 1.76;
  max-width: 56ch; padding-right: 48px; font-weight: 400;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════════════ */
.ma-contact-hero {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
  gap: 40px; align-items: start; margin-bottom: 36px;
}
.ma-contact-intro h2 { margin-bottom: 18px; }
.ma-contact-intro > p { color: var(--ma-ink-soft); font-size: 16px; line-height: 1.78; }
.ma-contact-direct-nudge {
  margin-top: 22px !important;
  font-weight: 700 !important; color: var(--ma-ink) !important;
  font-size: 14px !important;
}

.ma-contact-direct { display: grid; gap: 10px; }
.ma-contact-direct__item {
  display: grid; gap: 6px; padding: 18px 20px;
  border: 1px solid rgba(18,19,21,.08);
  border-radius: var(--ma-r); background: rgba(255,255,255,.68);
  color: var(--ma-ink);
  transition: transform var(--ma-transition), box-shadow var(--ma-transition), border-color var(--ma-transition);
}
.ma-contact-direct__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,19,21,.10);
  border-color: rgba(18,19,21,.14);
}
.ma-contact-direct__item--featured {
  border-color: rgba(139,26,26,.22);
  background: rgba(139,26,26,.04);
}
.ma-contact-direct__label {
  color: var(--ma-ink-muted);
  font: 700 10px/1 'Oxanium', sans-serif; letter-spacing: .2em; text-transform: uppercase;
}
.ma-contact-direct strong { font-family: 'Oxanium', sans-serif; font-size: 16px; color: var(--ma-ink); }
.ma-contact-direct__item span:last-child { color: var(--ma-ink-muted); font-size: 13px; }

/* Ugly truth */
.ma-ugly-truth {
  margin: 0 0 30px; padding: 28px 32px;
  border-left: 1px solid var(--ma-red);
  background: rgba(139,26,26,.04);
  border-radius: 0 var(--ma-r) var(--ma-r) 0;
  display: grid; gap: 18px;
}
.ma-ugly-truth__line {
  margin: 0; font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.48; font-weight: 600; color: var(--ma-ink);
  letter-spacing: -.01em;
}

/* Form */
.ma-form-shell {
  padding: 40px; border: 1px solid rgba(18,19,21,.08);
  border-radius: var(--ma-r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.76) 0%, rgba(255,255,255,.90) 100%);
  box-shadow: 0 2px 12px rgba(18,19,21,.05);
}
.ma-form-shell__head {
  display: flex; justify-content: space-between;
  gap: 20px; align-items: flex-end; margin-bottom: 30px;
}
.ma-form-shell__head h3 { color: var(--ma-ink); font-size: 24px; }
.ma-form-shell__head p  { margin: 0; color: var(--ma-ink-muted); font-size: 13px; }
.ma-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.ma-field-card {
  display: grid; gap: 8px; padding: 16px 18px 14px;
  background: #fff; border: 1px solid rgba(18,19,21,.08);
  border-radius: var(--ma-r);
  transition: border-color var(--ma-transition), box-shadow var(--ma-transition);
}
.ma-field-card--full { grid-column: 1 / -1; }
.ma-field-card span {
  color: var(--ma-ink); font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
}
.ma-field-card input,
.ma-field-card textarea {
  width: 100%; padding: 0; border: 0; background: transparent;
  color: var(--ma-ink); font-size: 15px; outline: none; resize: vertical;
}
.ma-field-card input::placeholder,
.ma-field-card textarea::placeholder { color: #b0a89e; }
.ma-field-card:focus-within {
  border-color: rgba(139,26,26,.38);
  box-shadow: 0 0 0 3px rgba(139,26,26,.08);
}
.ma-form__actions {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 22px;
}
.ma-form__results { color: var(--ma-ink-muted); font-size: 14px; min-height: 20px; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.ma-footer {
  background: #06060a; color: #fff;
  padding: 64px 0 44px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.ma-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr; gap: 48px 80px;
}
.ma-footer__name {
  margin-bottom: 10px;
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.36);
}
.ma-footer__title {
  margin-bottom: 10px;
  font: 800 clamp(22px, 2.4vw, 42px)/1.04 'Oxanium', sans-serif;
  letter-spacing: -.025em;
}
.ma-footer__markets {
  margin-bottom: 22px;
  font: 600 10px/1 'Oxanium', sans-serif;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.ma-footer p { color: rgba(255,255,255,.56); font-size: 15px; line-height: 1.74; font-weight: 400; }
.ma-footer__signature {
  margin-top: 22px;
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.ma-footer__label {
  margin-bottom: 16px; color: rgba(255,255,255,.34);
  font: 700 10px/1 'Oxanium', sans-serif; letter-spacing: .24em; text-transform: uppercase;
}
.ma-footer__nav { display: grid; gap: 14px; }
.ma-footer__nav a {
  color: rgba(255,255,255,.62); font-weight: 500; font-size: 15px;
  transition: color var(--ma-transition);
}
.ma-footer__nav a:hover { color: #fff; }
.ma-footer__legal {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  color: rgba(255,255,255,.28); font-size: 12px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.05);
}

/* ════════════════════════════════════════════════════════════════
   BACK TO TOP
   Thin line grows into circle on scroll.
════════════════════════════════════════════════════════════════ */
.ma-back-to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(9,9,12,.82);
  color: rgba(255,255,255,.62); font-size: 14px; line-height: 1;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease, border-color .24s ease, color .24s ease;
  z-index: 1100;
}
.ma-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ma-back-to-top:hover { border-color: rgba(255,255,255,.28); color: #fff; }

/* ════════════════════════════════════════════════════════════════
   PERSONAL MID-PAGE CTA (from conversion_additions.html)
════════════════════════════════════════════════════════════════ */
.ma-personal-cta {
  background: var(--ma-bg-raised);
  padding: 88px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), inset 0 -1px 0 rgba(255,255,255,.04);
}
.ma-personal-cta__inner {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(300px,.88fr);
  gap: clamp(44px, 6vw, 96px); align-items: center;
}
.ma-personal-cta__copy h2 { margin-bottom: 24px; color: #fff; }
.ma-personal-cta__copy p  { color: var(--ma-text-soft); font-size: 16px; line-height: 1.8; font-weight: 400; }

.ma-personal-cta__wa {
  display: grid; gap: 8px; padding: 26px 28px;
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.22);
  border-radius: var(--ma-r-lg);
  transition: background var(--ma-transition), border-color var(--ma-transition), transform var(--ma-transition);
}
.ma-personal-cta__wa:hover {
  background: rgba(37,211,102,.10);
  border-color: rgba(37,211,102,.36);
  transform: translateY(-2px);
}
.ma-personal-cta__wa-label {
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(37,211,102,.82);
}
.ma-personal-cta__wa strong {
  font-family: 'Oxanium', sans-serif; font-size: 24px; color: #fff;
  letter-spacing: -.02em;
}
.ma-personal-cta__wa-sub { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.5; }

.ma-personal-cta__or {
  text-align: center; margin: 18px 0;
  font: 600 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.22); position: relative;
}
.ma-personal-cta__or::before,
.ma-personal-cta__or::after {
  content: ""; position: absolute; top: 50%;
  width: 36%; height: 1px;
  background: rgba(255,255,255,.08);
}
.ma-personal-cta__or::before { left: 0; }
.ma-personal-cta__or::after  { right: 0; }

.ma-personal-cta__email {
  display: block; text-align: center;
  color: rgba(255,255,255,.54); font-size: 14px; font-weight: 500;
  transition: color var(--ma-transition);
}
.ma-personal-cta__email:hover { color: rgba(255,255,255,.88); }
.ma-personal-cta__note {
  margin-top: 22px; font: 600 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.22); text-align: center; display: block;
}

/* Bridge CTA */
.ma-bridge-cta {
  max-width: 580px; margin: 0 auto;
  padding: 24px 0 0; text-align: center;
}
.ma-bridge-cta p {
  margin: 0 0 10px; color: rgba(255,255,255,.62);
  font-size: clamp(15px, 1.1vw, 18px); line-height: 1.56; font-weight: 400;
}
.ma-bridge-cta__note {
  display: block; font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.28) !important;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 1280px
════════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .ma-testimonials { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ma-cost-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ma-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 56px; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ma-contact-hero { grid-template-columns: 1fr; }
  .ma-lane__inner  { grid-template-columns: 200px minmax(0,1.6fr); }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 991px
════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  :root {
    --ma-shell:        min(100vw - 40px, 1380px);
    --ma-shell-narrow: min(100vw - 40px, 900px);
    --ma-space:        96px;
  }
  .ma-topbar  { display: none; }
  .ma-nav__inner { min-height: 66px; gap: 12px; }
  .ma-menu   { display: none; }
  .ma-burger { display: block; }
  .ma-brand img { height: 30px; }

  .ma-hero__content { padding: 106px 0 56px; }
  .ma-hero__copy    { max-width: 100%; }
  .ma-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(9,9,12,.22) 0%,
      rgba(9,9,12,.42) 30%,
      rgba(9,9,12,.68) 62%,
      rgba(9,9,12,.88) 100%
    );
  }
  .ma-hero__media { background-position: 72% center; }
  .ma-hero::after { display: none; }

  /* Kill diagonal cuts on mobile — too complex in narrow viewport */
  .ma-section--deep::after   { display: none; }
  .ma-section--ivory::before { display: none; }
  .ma-section--contact::before { display: none; }

  .ma-split,
  .ma-split--about,
  .ma-split--reverse { grid-template-columns: 1fr; gap: 28px; }
  .ma-sticky-media { position: relative; top: 0; }
  .ma-media-card img, .ma-portrait img { height: 360px; }
  .ma-portrait--secondary img { height: 320px; object-position: center 68%; }

  .ma-plan-grid    { grid-template-columns: 1fr; gap: 2px; }
  .ma-footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .ma-lane__inner  { grid-template-columns: 1fr; padding: 18px 0 26px; }
  .ma-lane__left   { padding: 0 26px 18px; border-right: 0; border-bottom: 1px solid rgba(18,19,21,.07); }
  .ma-lane__right  { padding: 18px 26px 0; }
  .ma-lane__tag    { padding: 14px 26px 0; }

  .ma-testimonial--featured { grid-column: span 2; }
  .ma-proof-stats  { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ma-cost-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .ma-personal-cta { padding: 64px 0; }
  .ma-personal-cta__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 767px
════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --ma-space: var(--ma-space-mobile); }

  h1 { font-size: clamp(30px, 10.5vw, 44px); }
  h2 { font-size: clamp(24px, 8.5vw, 34px); }

  .ma-hero__content { padding: 100px 0 44px; }
  .ma-hero h1 { max-width: 100%; }
  .ma-hero__gm-voice { display: none; }
  .ma-lead--secondary { display: none; }
  .ma-hero .ma-lead  { font-size: 16px; }
  .ma-hero__actions  { gap: 14px; }
  .ma-btn { width: 100%; min-height: 52px; }
  .ma-field-card { padding: 18px 18px 16px; }

  .ma-mini-grid,
  .ma-cost-grid,
  .ma-plan-grid,
  .ma-testimonials,
  .ma-proof-stats,
  .ma-cred-grid,
  .ma-form__grid,
  .ma-lead-gen { grid-template-columns: 1fr; }

  .ma-plan-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .ma-plan-step:last-child { border-bottom: none; }

  .ma-testimonial__kicker { min-height: 0; }
  .ma-testimonial--featured { grid-column: span 1; }
  .ma-testimonial--featured .ma-testimonial__kicker { font-size: 13px; }
  .ma-testimonial__head img { border-radius: 3px; }

  .ma-lane__left, .ma-lane__right, .ma-lane__tag { padding-left: 20px; padding-right: 20px; }

  .ma-gm-voice { max-width: 100%; margin-bottom: 18px; }
  .ma-cost-card__gm { margin-bottom: 14px; padding-bottom: 14px; }

  .ma-form-shell { padding: 24px 20px; }
  .ma-form-shell__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ma-form-shell__head h3 { font-size: 22px; }

  .ma-faq__question { font-size: 15px; padding: 20px 0; }
  .ma-faq__answer p { padding-right: 0; font-size: 14px; }

  .ma-contact-hero { gap: 28px; }
  .ma-ugly-truth { padding: 22px 20px; gap: 14px; }
  .ma-ugly-truth__line { font-size: 15px; }

  .ma-trust-band { padding: 32px 0; }
  .ma-trust-band__logos { gap: clamp(14px, 5vw, 28px); }
  .ma-logo--shl      { height: 28px; }
  .ma-logo--snl      { height: 32px; max-width: 52px; }
  .ma-logo--del      { height: 28px; max-width: 66px; }
  .ma-logo--nhl      { height: 36px; max-width: 38px; }
  .ma-logo--olympics { height: 22px; max-width: 76px; }
  .ma-logo--chl      { height: 28px; max-width: 52px; }

  .ma-footer__grid  { gap: 28px; }
  .ma-footer__title { font-size: clamp(20px, 7.5vw, 30px); }
  .ma-footer__legal { flex-direction: column; gap: 6px; }

  .ma-personal-cta { padding: 52px 0; }
  .ma-personal-cta__wa strong { font-size: 20px; }
  .ma-center-intro { margin-bottom: 40px; }
  .ma-proof-origin { padding: 18px 20px; }

  .ma-back-to-top { right: 14px; bottom: 14px; width: 36px; height: 36px; font-size: 13px; }
  .ma-portrait--secondary img { height: 280px; object-position: center 65%; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --ma-shell:        min(100vw - 32px, 1380px);
    --ma-shell-narrow: min(100vw - 32px, 900px);
  }
  h1 { font-size: clamp(26px, 11vw, 36px); }
  .ma-btn { min-height: 44px; padding: 0 20px; }
  .ma-hero__actions { flex-direction: column; align-items: flex-start; }
  .ma-logo--nhl    { height: 28px; }
  .ma-logo--olympics { height: 18px; }
  .ma-form-shell { padding: 18px 16px; }
  .ma-ugly-truth { padding: 18px 16px; }
  .ma-lane__left, .ma-lane__right, .ma-lane__tag { padding-left: 16px; padding-right: 16px; }
}

/* ════════════════════════════════════════════════════════════════
   PRINT
════════════════════════════════════════════════════════════════ */
@media print {
  .ma-header, .ma-back-to-top, .ma-trust-band,
  .ma-hero__actions, .ma-personal-cta { display: none; }
  .ma-hero { min-height: auto; padding: 40px 0; }
  .ma-hero__overlay, .ma-hero__media { display: none; }
  .ma-section--deep::after,
  .ma-section--ivory::before { display: none; }
  body { color: #000; background: #fff; }
}

/* ════════════════════════════════════════════════════════════════
   PLAN STEPS — ghosted background number
   Borrowed from Kaged editorial depth treatment.
   The number sits behind content at near-invisible opacity.
   Creates spatial depth without visual noise.
════════════════════════════════════════════════════════════════ */
.ma-plan-step {
  position: relative;
  overflow: hidden;
}
.ma-plan-step::before {
  content: attr(data-step);
  position: absolute;
  bottom: -16px;
  right: 20px;
  font: 800 clamp(110px, 11vw, 190px)/1 'Oxanium', sans-serif;
  color: #fff;
  opacity: .028;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}


/* ════════════════════════════════════════════════════════════════
   TRUST BAND — desktop static / mobile marquee
   Desktop: existing flex layout, centred.
   Mobile: infinite CSS marquee scroll, no JS required.
   Solves the mobile wrap problem and adds premium motion.
════════════════════════════════════════════════════════════════ */

/* Desktop version — visible above 768px */
.ma-trust-band__desktop { display: block; }
.ma-trust-band__mobile  { display: none; }

@media (max-width: 767px) {
  .ma-trust-band__desktop { display: none; }
  .ma-trust-band__mobile  { display: block; }

  .ma-trust-band {
    padding: 28px 0;
    overflow: hidden;
  }

  .ma-trust-band__mobile .ma-trust-band__eyebrow {
    text-align: center;
    margin-bottom: 22px;
  }

  /* Marquee container — clips the scrolling track */
  .ma-marquee {
    overflow: hidden;
    width: 100%;
    /* Fade edges so scroll feels organic not chopped */
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%
    );
  }

  /* Track — contains two full sets of logos for seamless loop */
  .ma-marquee__track {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    animation: marqueeScroll 18s linear infinite;
  }

  /* Pause on hover/focus for accessibility */
  .ma-marquee:hover .ma-marquee__track,
  .ma-marquee:focus-within .ma-marquee__track {
    animation-play-state: paused;
  }

  /* Respect reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .ma-marquee__track { animation: none; }
    .ma-trust-band__desktop { display: block; }
    .ma-trust-band__mobile  { display: none; }
  }

  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Logo sizes inside marquee */
  .ma-marquee__track .ma-logo--shl      { height: 26px; max-width: 68px; }
  .ma-marquee__track .ma-logo--snl      { height: 30px; max-width: 50px; }
  .ma-marquee__track .ma-logo--del      { height: 26px; max-width: 64px; }
  .ma-marquee__track .ma-logo--nhl      { height: 34px; max-width: 36px; }
  .ma-marquee__track .ma-logo--olympics { height: 22px; max-width: 72px; }
  .ma-marquee__track .ma-logo--chl      { height: 26px; max-width: 50px; }
}



/* Topbar icon + text alignment */
.ma-topbar__insight {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ma-topbar__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: .72;
  transition: opacity .18s ease;
}
.ma-topbar__insight:hover .ma-topbar__icon,
.ma-topbar__actions a:hover .ma-topbar__icon {
  opacity: 1;
}

/* Action icons — no text, just icon */
.ma-topbar__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  transition: border-color .18s ease, background .18s ease;
}
.ma-topbar__actions a:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
}
.ma-topbar__actions .ma-topbar__icon {
  width: 14px;
  height: 14px;
}

/* ════════════════════════════════════════════════════════════════
   SPEAKING SECTION
   For corporate CEOs and HR Directors.
   Distinct from the hockey consulting sections.
════════════════════════════════════════════════════════════════ */
.ma-speaking {
  background: var(--ma-bg-raised);
  padding: var(--ma-space) 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(255,255,255,.05);
}
.ma-speaking__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
  gap: 16px;
  margin-top: 48px;
}
.ma-speaking__card {
  padding: 32px 28px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--ma-r-lg);
  transition: background var(--ma-transition), border-color var(--ma-transition), transform var(--ma-transition);
}
.ma-speaking__card:hover {
  background: rgba(255,255,255,.042);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.ma-speaking__card--featured {
  border-top: 2px solid var(--ma-red);
}
.ma-speaking__icon {
  display: block;
  width: 36px; height: 36px;
  margin-bottom: 20px;
  color: var(--ma-red);
  opacity: .82;
}
.ma-speaking__card h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(16px, 1.3vw, 20px);
}
.ma-speaking__card p {
  color: var(--ma-text-muted);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}
.ma-speaking__cta {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.ma-speaking__cta p {
  margin: 0;
  color: var(--ma-text-muted);
  font: 500 11px/1 'Oxanium', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ma-speaking__quote {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.38;
  color: rgba(255,255,255,.72);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -.01em;
}
.ma-speaking__quote cite {
  display: block;
  margin-top: 14px;
  font: 700 10px/1 'Oxanium', sans-serif;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}

@media (max-width: 991px) {
  .ma-speaking__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .ma-speaking__grid { grid-template-columns: 1fr; }
}
/* ════════════════════════════════════════════════════════════════
   IMAGE BREAK — between plan and pathways
   Full-bleed cinematic moment. No section padding.
   Image fills. Dark overlay. Two-line caption bottom-left.
════════════════════════════════════════════════════════════════ */
.ma-image-break {
  position: relative;
  width: 100%;
  height: clamp(320px, 44vw, 620px);
  overflow: hidden;
  display: block;
}
.ma-image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transform: scale(1.04);
  transition: transform 12s ease;
}
.ma-image-break:hover img {
  transform: scale(1.0);
}
.ma-image-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9,9,12,.72)  0%,
    rgba(9,9,12,.38) 40%,
    rgba(9,9,12,.52) 72%,
    rgba(9,9,12,.88) 100%
  );
  z-index: 1;
}
.ma-image-break__caption {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  z-index: 2;
  width: var(--ma-shell);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ma-image-break__caption span {
  display: block;
  font: 700 10px/1 'Oxanium', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.44);
}
.ma-image-break__caption span:first-child {
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

@media (max-width: 767px) {
  .ma-image-break { height: clamp(220px, 56vw, 360px); }
  .ma-image-break__caption { bottom: 24px; }
  .ma-image-break__caption span { font-size: 9px; letter-spacing: .18em; }
}


.ma-lead--secondary {
  max-width: 34ch;
  margin-top: 14px;
  color: rgba(255,255,255,.56);
  font-weight: 300;
  text-shadow: 0 0 24px rgba(255,255,255,.06);
}
.ma-form__intro { margin: 0 0 18px; color: var(--ma-ink-soft); font-size: 15px; line-height: 1.72; }
.ma-form__trust { margin-top: 14px; color: var(--ma-ink-muted); font-size: 13px; line-height: 1.6; }
.ma-footer__legal a { color: rgba(255,255,255,.42); transition: color var(--ma-transition); }
.ma-footer__legal a:hover { color: #fff; }

/* ── Reading path utility — Influex/Asprey principle ──────────
   .ma-hook: the one sentence per section that must be read.
   Larger, higher contrast, more weight. Everything else is detail.
   Use sparingly — one per section maximum.
──────────────────────────────────────────────────────────────── */
.ma-hook {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}
.ma-section--ivory .ma-hook { color: var(--ma-ink); }
.ma-hook--accent { color: var(--ma-red); }

/* ── Visual hierarchy spacer ────────────────────────────────────
   More air between major sections creates the perception of
   less text. The text is the same. The eye has room to breathe.
──────────────────────────────────────────────────────────────── */
.ma-section-lead + p {
  margin-top: 18px;
}
.ma-copy h2 + .ma-section-lead {
  margin-top: 16px;
  margin-bottom: 28px;
}

.ma-speaking__divider {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 32px 36px;
  border-left: 2px solid var(--ma-red);
  background: rgba(139,26,26,.04);
  border-radius: 0 var(--ma-r-lg) var(--ma-r-lg) 0;
}
.ma-speaking__divider p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 300;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════════
   FINAL DEPLOYMENT POLISH — contrast, forms, mobile crops
   Added after QA to protect minor text readability on light panels
   and make contact-form states visible without inline color styling.
════════════════════════════════════════════════════════════════ */
.ma-section--ivory .ma-eyebrow,
.ma-section--contact .ma-eyebrow,
.ma-contact .ma-eyebrow {
  color: rgba(18,19,21,.58);
}

.ma-section--ivory .ma-section-lead,
.ma-section--contact .ma-section-lead,
.ma-contact-intro p,
.ma-form-shell__head p,
.ma-field-card span,
.ma-form__intro,
.ma-form__trust,
.ma-pd-contact-note {
  color: #2d2925;
}

.ma-contact-direct__item,
.ma-contact-direct__item span,
.ma-contact-direct__item strong,
.ma-contact-direct__label,
.ma-contact-direct__value,
.ma-contact-direct__sub {
  color: #111214;
}

.ma-contact-direct__item--featured,
.ma-contact-direct__item--featured span,
.ma-contact-direct__item--featured strong,
.ma-contact-direct__item--featured .ma-contact-direct__label,
.ma-contact-direct__item--featured .ma-contact-direct__value,
.ma-contact-direct__item--featured .ma-contact-direct__sub {
  color: #fff;
}

.ma-form__results {
  min-height: 1.5em;
  color: #2d2925;
  font-weight: 700;
}
.ma-form__results.is-sending { color: #6e1414; }
.ma-form__results.is-success { color: #245235; }
.ma-form__results.is-error { color: #8b1a1a; }

.ma-btn[disabled],
.ma-btn[aria-busy="true"] {
  opacity: .68;
  cursor: wait;
  transform: none;
}

.ma-field-card input,
.ma-field-card textarea {
  color: #111214;
}
.ma-field-card input::placeholder,
.ma-field-card textarea::placeholder {
  color: rgba(17,18,20,.48);
}

/* Safer hero crops on the pages most sensitive to face/head position. */
.ma-pd-hero .ma-hero__media { background-position: 52% 42%; }
.ma-mentor-hero {
  background-image:
    linear-gradient(90deg, rgba(9,9,12,.94) 0%, rgba(9,9,12,.86) 42%, rgba(9,9,12,.58) 100%),
    url('../images/misc/magna_speaking.png');
  background-size: cover;
  background-position: 58% 32%;
}

@media (max-width: 767px) {
  .ma-pd-hero .ma-hero__media { background-position: 50% 28%; }
  .ma-mentor-hero { background-position: 50% 24%; }
  .ma-contact-direct__item { min-height: 84px; }
}

/* === FINAL V4 VISUAL-ONLY PATCH: lighter hero image treatment, no copy changes === */
.ma-pd-hero .ma-hero__media { background-position: 52% 36%; }
.ma-pd-hero .ma-hero__overlay {
  background:
    linear-gradient(108deg, rgba(9,9,12,.66) 0%, rgba(9,9,12,.44) 34%, rgba(9,9,12,.15) 68%, rgba(9,9,12,.03) 100%),
    linear-gradient(0deg, rgba(9,9,12,.36) 0%, rgba(9,9,12,.14) 38%, rgba(9,9,12,0) 72%);
}
.ma-pd-hero.ma-hero::after {
  height: 18%;
  background: linear-gradient(to top, rgba(9,9,12,.42) 0%, transparent 100%);
}
.ma-mentor-hero {
  background-image:
    linear-gradient(90deg, rgba(9,9,12,.78) 0%, rgba(9,9,12,.52) 42%, rgba(9,9,12,.18) 100%),
    url('../images/misc/magna_speaking.png') !important;
  background-position: 58% 32%;
}
.ma-mentor-hero::before {
  background:
    radial-gradient(ellipse 60% 70% at 90% 40%, rgba(139,26,26,.035) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(139,26,26,.025) 0%, transparent 60%);
}
.ma-pd-hero h1,
.ma-pd-hero .ma-lead,
.ma-mentor-hero h1,
.ma-mentor-hero .ma-mentor-hero__lead {
  text-shadow: 0 2px 18px rgba(0,0,0,.42);
}
@media (max-width: 767px) {
  .ma-pd-hero .ma-hero__media { background-position: 50% 26%; }
  .ma-pd-hero .ma-hero__overlay {
    background:
      linear-gradient(180deg, rgba(9,9,12,.62) 0%, rgba(9,9,12,.28) 48%, rgba(9,9,12,.10) 100%),
      linear-gradient(0deg, rgba(9,9,12,.40) 0%, rgba(9,9,12,0) 60%);
  }
  .ma-mentor-hero {
    background-position: 50% 26%;
    background-image:
      linear-gradient(180deg, rgba(9,9,12,.66) 0%, rgba(9,9,12,.38) 42%, rgba(9,9,12,.18) 100%),
      url('../images/misc/magna_speaking.png') !important;
  }
}
