/*
Theme Name: Media Buying Agency
Theme URI: https://example.com/media-buying-agency
Author: Curly Bits
Author URI: https://example.com
Description: A premium, highly customizable WordPress theme for media buying, paid growth, and performance marketing agencies. Dark neon-lime design system with immersive animations and interactive features.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: media-buying-agency
Tags: custom-colors, custom-logo, custom-menu, featured-images, block-styles, one-column, editor-style, full-site-editing-ready
*/

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

/* =========================================================
   DESIGN TOKENS
   Runtime vars are injected by functions.php; these are fallbacks.
   ========================================================= */
:root {
  --mba-accent:    #b5f43e;
  --mba-accent-2:  #2dd4bf;
  --mba-paper:     #060a07;
  --mba-ink:       #edf5e7;
  --mba-header-bg: #060a07;
  --mba-header-link:    #edf5e7;
  --mba-header-cta-bg:  #b5f43e;
  --mba-hero-min-height:    680px;
  --mba-hero-content-width: 640px;

  --mba-surface:   #0d1410;
  --mba-surface-2: #131e15;
  --mba-dark:      #030504;
  --mba-light:     #edf5e7;
  --mba-muted:     #5a7a56;
  --mba-line:      rgba(181, 244, 62, 0.12);
  --mba-glow:      rgba(181, 244, 62, 0.18);
  --mba-teal-glow: rgba(45, 212, 191, 0.16);
  --mba-radius:    18px;
  --mba-max:       1180px;
  --mba-font-display: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mba-font-body:    Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mba-ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --mba-dur:       0.45s;
  --mba-panel:     rgba(13, 20, 16, 0.84);
  --cursor-x: 50%;
  --cursor-y: 50%;
}

/* =========================================================
   RESET + BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mba-ink);
  background: var(--mba-paper);
  font-family: var(--mba-font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--mba-font-display);
  font-weight: 800;
  line-height: 1.05;
  color: var(--mba-light);
}

/* =========================================================
   UTILITIES
   ========================================================= */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mba-container {
  width: min(var(--mba-max), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   CURSOR GLOW (filled by JS)
   ========================================================= */
.mba-cursor-glow {
  position: fixed;
  top: var(--cursor-y);
  left: var(--cursor-x);
  translate: -50% -50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 244, 62, 0.045) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  transition: top 0.1s linear, left 0.1s linear;
}

/* =========================================================
   SCROLL-REVEAL
   Only applied once JS adds .js-ready to <html> — prevents
   invisible content when JS is slow or blocked.
   ========================================================= */
.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--mba-dur) var(--mba-ease),
    transform var(--mba-dur) var(--mba-ease);
  transition-delay: calc(var(--i, 0) * 85ms);
}

.js-ready [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.mba-site-header {
  position: relative;
  top: 0;
  z-index: 50;
  background: rgba(6, 10, 7, 0.72);
  border-bottom: 1px solid var(--mba-line);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  transition: background var(--mba-dur) var(--mba-ease), box-shadow var(--mba-dur) var(--mba-ease);
}

.mba-site-header.is-sticky {
  position: sticky;
}

.mba-site-header.is-scrolled {
  background: rgba(3, 5, 4, 0.92);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--mba-line);
}

.mba-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mba-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  color: var(--mba-header-link);
}

.mba-brand-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.mba-brand-logo img {
  max-height: 44px;
  width: auto;
}

.mba-brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--mba-dark);
  background: var(--mba-accent);
  border-radius: 12px;
  font-weight: 900;
  font-size: 1rem;
}

.mba-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mba-nav ul,
.mba-footer-links ul {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mba-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(237, 245, 231, 0.68);
  transition: color 0.2s ease;
}

.mba-nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -3px;
  height: 1px;
  background: var(--mba-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--mba-ease);
}

.mba-nav a:hover {
  color: var(--mba-header-link);
}

.mba-nav a:hover::after {
  transform: scaleX(1);
}

.mba-nav .mba-btn {
  background: linear-gradient(110deg, var(--mba-header-cta-bg) 40%, #d8ff7a 52%, var(--mba-header-cta-bg) 64%);
  background-size: 200% auto;
  border-color: var(--mba-header-cta-bg);
  color: var(--mba-dark);
  font-weight: 700;
}

.mba-nav .mba-btn:hover {
  background: transparent;
  border-color: var(--mba-header-cta-bg);
  color: var(--mba-header-cta-bg);
}

.mba-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mba-line);
  border-radius: 50%;
  background: transparent;
  color: var(--mba-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mba-menu-toggle:hover {
  border-color: var(--mba-accent);
  background: var(--mba-glow);
}

.mba-menu-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* nav backdrop for mobile */
.mba-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 4, 0.7);
  z-index: 40;
  backdrop-filter: blur(4px);
}

.mba-nav-backdrop.is-visible {
  display: block;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.mba-btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--mba-accent);
  border-radius: 999px;
  background: linear-gradient(110deg, var(--mba-accent) 40%, #d8ff7a 52%, var(--mba-accent) 64%);
  background-size: 200% auto;
  color: var(--mba-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s var(--mba-ease), background-position 0.6s ease, color 0.22s ease, box-shadow 0.22s ease;
  font-family: var(--mba-font-body);
  animation: mba-shimmer 3s linear infinite;
}

.mba-btn:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--mba-glow);
}

.mba-btn:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 2px solid var(--mba-accent);
  outline-offset: 3px;
}

.mba-btn.is-ghost {
  background: transparent;
  color: var(--mba-light);
  border-color: rgba(237, 245, 231, 0.3);
  animation: none;
}

.mba-btn.is-ghost:hover {
  border-color: var(--mba-accent);
  color: var(--mba-accent);
  box-shadow: 0 8px 28px var(--mba-glow);
}

/* =========================================================
   SECTION SHARED
   ========================================================= */
.mba-section {
  padding: clamp(56px, 7vw, 92px) 0;
  border-top: 1px solid var(--mba-line);
  position: relative;
}

.mba-section-header {
  width: min(760px, 100%);
  margin-bottom: clamp(26px, 4vw, 44px);
}

.mba-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--mba-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mba-eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  animation: mba-neon-pulse 2.8s ease-in-out infinite;
}

.mba-section-title {
  margin: 0;
  font-family: var(--mba-font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--mba-light);
}

.mba-section-copy {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--mba-muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.62;
}

/* =========================================================
   HERO
   ========================================================= */
.mba-hero {
  min-height: min(var(--mba-hero-min-height), calc(100vh - 72px));
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--mba-light);
  background:
    linear-gradient(135deg, rgba(6, 10, 7, 0.95) 0%, rgba(6, 10, 7, 0.75) 60%, rgba(6, 10, 7, 0.6) 100%),
    var(--mba-hero-image, url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2200&q=80")) center / cover no-repeat;
}

.mba-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 55%, rgba(181, 244, 62, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 82% 22%, rgba(45, 212, 191, 0.12) 0%, transparent 32%);
  animation: mba-orb-drift 20s ease-in-out infinite;
  pointer-events: none;
}

.mba-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(6, 10, 7, 0.88), transparent);
  pointer-events: none;
}

@keyframes mba-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(-18px, 14px) scale(1.05); opacity: 0.8; }
  66% { transform: translate(12px, -10px) scale(0.96); opacity: 0.9; }
}

@keyframes mba-neon-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes mba-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes mba-border-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(181, 244, 62, 0.20); }
  50% { box-shadow: 0 0 28px rgba(181, 244, 62, 0.50), 0 0 60px rgba(181, 244, 62, 0.12); }
}

.mba-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 8vw, 104px) 0 clamp(40px, 6vw, 64px);
}

.mba-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.42fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.mba-hero-grid.hero-no-panel {
  grid-template-columns: minmax(0, 1fr);
}

.mba-hero-grid.hero-no-panel .mba-hero-panel {
  display: none;
}

.mba-hero h1 {
  max-width: var(--mba-hero-content-width);
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--mba-light);
}

.mba-hero-copy {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(237, 245, 231, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.58;
}

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

.mba-hero .mba-btn {
  background: var(--mba-accent);
  border-color: var(--mba-accent);
  color: var(--mba-dark);
}

.mba-hero .mba-btn:hover {
  background: transparent;
  border-color: var(--mba-accent);
  color: var(--mba-accent);
}

.mba-hero .mba-btn.is-ghost {
  background: transparent;
  border-color: rgba(237, 245, 231, 0.28);
  color: var(--mba-light);
}

.mba-hero .mba-btn.is-ghost:hover {
  border-color: var(--mba-accent);
  color: var(--mba-accent);
}

.mba-hero-panel {
  border: 1px solid rgba(181, 244, 62, 0.22);
  border-radius: 26px;
  background: rgba(13, 20, 16, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  max-width: 360px;
  animation: mba-border-glow 3.5s ease-in-out infinite;
}

.mba-hero-panel:hover {
  border-color: rgba(181, 244, 62, 0.3);
  box-shadow: 0 0 0 1px rgba(181, 244, 62, 0.08), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.mba-hero-panel strong {
  display: block;
  margin-bottom: 14px;
  color: var(--mba-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mba-hero-panel p {
  margin: 0;
  color: rgba(237, 245, 231, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* =========================================================
   TAPE / MARQUEE
   ========================================================= */
.mba-tape {
  overflow: hidden;
  border-top: 1px solid var(--mba-line);
  border-bottom: 1px solid var(--mba-line);
  background: var(--mba-dark);
}

.mba-tape-track {
  display: flex;
  width: max-content;
  animation: mba-marquee 36s linear infinite;
}

.mba-tape.is-paused .mba-tape-track,
.mba-tape:hover .mba-tape-track {
  animation-play-state: paused;
}

.mba-tape-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(237, 245, 231, 0.55);
  border-right: 1px solid rgba(181, 244, 62, 0.14);
}

.mba-tape-item span {
  color: var(--mba-accent);
}

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

/* =========================================================
   PROOF / STATS
   ========================================================= */
.mba-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--mba-line);
  background: var(--mba-surface);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--mba-line);
}

.mba-proof-item {
  min-height: 154px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--mba-line);
  transition: background 0.3s ease;
}

.mba-proof-item:last-child {
  border-right: 0;
}

.mba-proof-item:hover {
  background: var(--mba-surface-2);
}

.mba-proof-value {
  display: block;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--mba-accent);
  font-family: var(--mba-font-display);
}

.mba-proof-label {
  display: block;
  margin-top: 14px;
  color: var(--mba-muted);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* =========================================================
   PARTNER STRIP
   ========================================================= */
.mba-partners {
  background: var(--mba-paper);
}

.mba-partners-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.mba-partners-head h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.mba-partner-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.mba-partner-strip span {
  min-height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mba-line);
  border-radius: 14px;
  background: var(--mba-surface);
  color: var(--mba-muted);
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.mba-partner-strip span:hover {
  border-color: rgba(181, 244, 62, 0.38);
  color: var(--mba-accent);
  background: var(--mba-surface-2);
  box-shadow: 0 0 16px var(--mba-glow);
}

/* =========================================================
   HOME ABOUT SNAPSHOT
   ========================================================= */
.mba-home-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.mba-stat-stack {
  display: grid;
  gap: 12px;
}

.mba-stat-stack article {
  padding: 24px;
  border: 1px solid var(--mba-line);
  border-radius: 20px;
  background: var(--mba-surface);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mba-stat-stack article:hover {
  border-color: rgba(181, 244, 62, 0.32);
  box-shadow: 0 0 20px var(--mba-glow);
}

.mba-stat-stack strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--mba-accent);
  font-family: var(--mba-font-display);
}

.mba-stat-stack span {
  display: block;
  margin-top: 10px;
  color: var(--mba-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

/* =========================================================
   HOME SERVICES PREVIEW
   ========================================================= */
.mba-home-services {
  background: var(--mba-surface);
}

.mba-home-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.mba-home-services .mba-section-header {
  margin-bottom: 26px;
}

.mba-home-service-stack {
  display: grid;
}

.mba-home-service-stack article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(14px, 2.5vw, 28px);
  align-items: start;
  padding: 22px;
  background: var(--mba-surface-2);
  border: 1px solid var(--mba-line);
  border-radius: 20px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mba-home-service-stack article:hover {
  border-color: rgba(181, 244, 62, 0.28);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.4);
}

.mba-home-service-stack span {
  color: var(--mba-accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mba-home-service-stack h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  line-height: 1.1;
  font-weight: 700;
}

.mba-home-service-stack p {
  margin: 0;
  color: var(--mba-muted);
  line-height: 1.58;
  font-size: 0.95rem;
}

/* =========================================================
   INFRASTRUCTURE / BUILD GRID
   ========================================================= */
.mba-build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mba-build-grid article {
  padding: 24px;
  border: 1px solid var(--mba-line);
  border-radius: 20px;
  background: var(--mba-surface);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.mba-build-grid article:hover {
  border-color: rgba(181, 244, 62, 0.32);
  box-shadow: 0 0 24px var(--mba-glow);
  background: var(--mba-surface-2);
}

.mba-build-grid h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 700;
  line-height: 1.12;
}

.mba-build-grid p {
  margin: 12px 0 0;
  color: var(--mba-muted);
  line-height: 1.58;
  font-size: 0.95rem;
}

/* =========================================================
   SUPPORT SECTION
   ========================================================= */
.mba-support {
  background: var(--mba-dark);
}

.mba-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.mba-support-list {
  display: grid;
  gap: 12px;
}

.mba-support-list article {
  padding: 22px;
  border: 1px solid rgba(181, 244, 62, 0.10);
  border-radius: 20px;
  background: rgba(181, 244, 62, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.mba-support-list article:hover {
  border-color: rgba(181, 244, 62, 0.28);
  background: rgba(181, 244, 62, 0.06);
}

.mba-support-list h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 700;
  line-height: 1.12;
}

.mba-support-list p {
  margin: 10px 0 0;
  color: rgba(237, 245, 231, 0.56);
  line-height: 1.58;
  font-size: 0.95rem;
}

/* =========================================================
   HOME CASE STUDIES GRID
   ========================================================= */
.mba-home-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mba-home-case-grid article {
  padding: 24px;
  border: 1px solid var(--mba-line);
  border-radius: 20px;
  background: var(--mba-surface);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mba-home-case-grid article:hover {
  border-color: rgba(45, 212, 191, 0.32);
  box-shadow: 0 0 24px var(--mba-teal-glow);
}

.mba-home-case-grid span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--mba-accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mba-home-case-grid h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  font-weight: 700;
  line-height: 1.12;
}

.mba-home-case-grid p {
  margin: 12px 0 0;
  color: var(--mba-muted);
  line-height: 1.58;
  font-size: 0.95rem;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.mba-testimonials {
  overflow: hidden;
  background: var(--mba-surface);
}

.mba-testimonial-marquee {
  width: 100%;
  overflow: hidden;
}

.mba-testimonial-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 4px 16px 12px;
  animation: mba-testimonials-left 44s linear infinite;
}

.mba-testimonial-marquee.is-paused .mba-testimonial-track,
.mba-testimonial-marquee:hover .mba-testimonial-track {
  animation-play-state: paused;
}

.mba-testimonial-card {
  width: min(420px, calc(100vw - 42px));
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--mba-line);
  border-radius: 22px;
  background: var(--mba-surface-2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mba-testimonial-card:hover {
  border-color: rgba(181, 244, 62, 0.24);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.5);
}

.mba-testimonial-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.mba-testimonial-head img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mba-line);
}

.mba-testimonial-head strong,
.mba-testimonial-head span {
  display: block;
}

.mba-testimonial-head strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--mba-accent);
}

.mba-testimonial-head span {
  margin-top: 3px;
  color: var(--mba-muted);
  font-size: 0.86rem;
}

.mba-testimonial-card p {
  margin: 0;
  color: rgba(237, 245, 231, 0.72);
  font-size: 0.96rem;
  line-height: 1.64;
}

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

/* =========================================================
   FINAL CTA
   ========================================================= */
.mba-final-cta {
  background: var(--mba-dark);
  position: relative;
  overflow: hidden;
}

.mba-final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 244, 62, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.mba-final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.mba-final-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.01;
}

.mba-final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mba-final-cta .mba-btn {
  background: var(--mba-accent);
  border-color: var(--mba-accent);
  color: var(--mba-dark);
}

.mba-final-cta .mba-btn:hover {
  background: transparent;
  border-color: var(--mba-accent);
  color: var(--mba-accent);
}

.mba-final-cta .mba-btn.is-ghost {
  background: transparent;
  border-color: rgba(237, 245, 231, 0.24);
  color: var(--mba-light);
}

.mba-final-cta .mba-btn.is-ghost:hover {
  border-color: var(--mba-accent);
  color: var(--mba-accent);
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.mba-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--mba-line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--mba-surface);
}

.mba-service {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--mba-surface);
  border-right: 1px solid var(--mba-line);
  border-bottom: 1px solid var(--mba-line);
  transition: background 0.3s ease;
}

.mba-service:nth-child(3n) {
  border-right: 0;
}

.mba-service:hover {
  background: var(--mba-surface-2);
}

.mba-service h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.58rem);
  font-weight: 700;
  line-height: 1.1;
}

.mba-service p {
  margin: 18px 0 0;
  color: var(--mba-muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.mba-service-index {
  display: block;
  margin-bottom: 22px;
  color: var(--mba-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.mba-process {
  background: var(--mba-dark);
}

.mba-process .mba-section-copy,
.mba-process .mba-step p {
  color: rgba(237, 245, 231, 0.56);
}

.mba-process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(181, 244, 62, 0.14);
}

.mba-step {
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid rgba(181, 244, 62, 0.10);
  transition: background 0.3s ease;
}

.mba-step:last-child {
  border-right: 0;
}

.mba-step:hover {
  background: rgba(181, 244, 62, 0.03);
}

.mba-step-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border: 1px solid rgba(181, 244, 62, 0.30);
  border-radius: 50%;
  color: var(--mba-accent);
  font-weight: 900;
  font-size: 0.88rem;
}

.mba-step h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.1;
}

.mba-step p {
  margin: 16px 0 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* =========================================================
   CASES / ADVANTAGES
   ========================================================= */
.mba-case-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--mba-line);
}

.mba-case {
  display: grid;
  grid-template-columns: 0.38fr 1fr 0.32fr;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--mba-line);
  transition: background 0.3s ease;
}

.mba-case:hover {
  background: var(--mba-glow);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 14px;
}

.mba-case-kicker {
  color: var(--mba-accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mba-case h3 {
  font-size: clamp(1.45rem, 2.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.mba-case p {
  margin: 12px 0 0;
  color: var(--mba-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.mba-case-metric {
  justify-self: end;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 900;
  color: var(--mba-accent);
  font-family: var(--mba-font-display);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.mba-about-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.mba-about-image {
  min-height: 440px;
  border-radius: var(--mba-radius);
  border: 1px solid var(--mba-line);
  background:
    linear-gradient(180deg, rgba(6, 10, 7, 0.06), rgba(6, 10, 7, 0.44)),
    var(--mba-about-image, url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1500&q=80")) center / cover no-repeat;
}

.mba-about-copy {
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
  line-height: 1.44;
  color: rgba(237, 245, 231, 0.80);
}

.mba-about-copy p {
  margin: 0 0 24px;
}

.mba-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--mba-line);
  background: var(--mba-line);
  border-radius: 26px;
  overflow: hidden;
}

.mba-team-card {
  min-height: 240px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--mba-surface);
  transition: background 0.3s ease;
}

.mba-team-card:hover {
  background: var(--mba-surface-2);
}

.mba-team-card span {
  color: var(--mba-accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mba-team-card h3 {
  margin: 28px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 0.98;
}

.mba-team-card p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--mba-muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.mba-principles {
  background: var(--mba-dark);
}

.mba-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(181, 244, 62, 0.10);
  border: 1px solid rgba(181, 244, 62, 0.12);
  border-radius: 26px;
  overflow: hidden;
}

.mba-principle {
  min-height: 280px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--mba-dark);
  transition: background 0.3s ease;
}

.mba-principle:hover {
  background: rgba(181, 244, 62, 0.03);
}

.mba-principle .mba-eyebrow {
  color: var(--mba-accent);
}

.mba-principle h2 {
  margin: 42px 0 0;
  color: rgba(237, 245, 231, 0.80);
  font-size: clamp(1.1rem, 1.8vw, 1.58rem);
  font-weight: 600;
  line-height: 1.24;
}

/* =========================================================
   SERVICE BENEFITS (SERVICES PAGE)
   ========================================================= */
.mba-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--mba-line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--mba-surface);
}

.mba-benefit {
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--mba-line);
  border-bottom: 1px solid var(--mba-line);
  background: var(--mba-surface);
  transition: background 0.3s ease;
}

.mba-benefit:nth-child(3n) {
  border-right: 0;
}

.mba-benefit:hover {
  background: var(--mba-surface-2);
}

.mba-benefit h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.75vw, 1.62rem);
  font-weight: 700;
  line-height: 1.1;
}

.mba-benefit p {
  margin: 18px 0 0;
  color: var(--mba-muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

/* =========================================================
   PLATFORMS (SERVICES PAGE)
   ========================================================= */
.mba-platforms {
  background: var(--mba-dark);
}

.mba-platforms .mba-section-copy {
  color: rgba(237, 245, 231, 0.56);
}

.mba-platform-list {
  border-top: 1px solid rgba(181, 244, 62, 0.14);
}

.mba-platform {
  display: grid;
  grid-template-columns: 80px 0.45fr 0.75fr 0.55fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  min-height: 104px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(181, 244, 62, 0.10);
  transition: background 0.3s ease;
}

.mba-platform:hover {
  background: rgba(181, 244, 62, 0.025);
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
  border-radius: 12px;
}

.mba-platform span {
  color: var(--mba-accent);
  font-weight: 900;
  font-family: var(--mba-font-display);
}

.mba-platform h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.35vw, 2.5rem);
  font-weight: 800;
  line-height: 1.02;
}

.mba-platform p {
  margin: 0;
  color: rgba(237, 245, 231, 0.56);
  line-height: 1.55;
  font-size: 0.95rem;
}

.mba-platform strong {
  color: var(--mba-light);
  line-height: 1.45;
  font-weight: 600;
}

/* =========================================================
   COMPLIANCE / WHITE-HAT
   ========================================================= */
.mba-compliance {
  background: var(--mba-dark);
}

.mba-compliance-inner {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.mba-compliance .mba-eyebrow {
  color: rgba(237, 245, 231, 0.55);
}

.mba-compliance p:not(.mba-eyebrow) {
  margin: 0;
  color: rgba(237, 245, 231, 0.64);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.62;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.mba-contact {
  background:
    radial-gradient(circle at 8% 10%, rgba(181, 244, 62, 0.08), transparent 28rem),
    var(--mba-dark);
}

.mba-contact .mba-section-copy {
  color: rgba(237, 245, 231, 0.60);
}

.mba-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
}

.mba-contact-panel {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(181, 244, 62, 0.16);
  border-radius: 26px;
  background: rgba(13, 20, 16, 0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mba-contact-list,
.mba-contact-methods {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mba-contact-methods {
  width: min(520px, 100%);
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(181, 244, 62, 0.12);
  border: 1px solid rgba(181, 244, 62, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.mba-contact-methods li {
  padding: 18px;
  background: rgba(3, 5, 4, 0.60);
  transition: background 0.25s ease;
}

.mba-contact-methods li:hover {
  background: rgba(181, 244, 62, 0.06);
}

.mba-contact-list span,
.mba-contact-methods span {
  display: block;
  color: rgba(237, 245, 231, 0.44);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mba-contact-list a,
.mba-contact-list strong,
.mba-contact-methods a,
.mba-contact-methods strong {
  display: inline-block;
  margin-top: 5px;
  color: var(--mba-light);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mba-contact-methods a:hover {
  color: var(--mba-accent);
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.mba-contact-form {
  display: grid;
  gap: 16px;
}

.mba-form-title {
  margin: 0 0 6px;
  color: var(--mba-light);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1;
}

.mba-contact-form label {
  display: grid;
  gap: 8px;
}

.mba-contact-form label span {
  color: rgba(237, 245, 231, 0.52);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mba-contact-form input,
.mba-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(181, 244, 62, 0.16);
  border-radius: var(--mba-radius);
  outline: 0;
  background: rgba(13, 20, 16, 0.60);
  color: var(--mba-light);
  font: inherit;
  font-size: 0.96rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.mba-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.mba-contact-form input::placeholder,
.mba-contact-form textarea::placeholder {
  color: rgba(237, 245, 231, 0.32);
}

.mba-contact-form input:focus,
.mba-contact-form textarea:focus {
  border-color: rgba(181, 244, 62, 0.50);
  background: rgba(13, 20, 16, 0.80);
  box-shadow: 0 0 0 3px rgba(181, 244, 62, 0.08);
}

.mba-contact-form .mba-btn {
  width: fit-content;
  background: var(--mba-accent);
  border-color: var(--mba-accent);
  color: var(--mba-dark);
}

.mba-form-alert {
  padding: 12px 16px;
  border-radius: var(--mba-radius);
  font-weight: 600;
  font-size: 0.9rem;
}

.mba-form-alert.is-success {
  background: rgba(181, 244, 62, 0.12);
  color: var(--mba-accent);
  border: 1px solid rgba(181, 244, 62, 0.24);
}

.mba-form-alert.is-error {
  background: rgba(255, 80, 80, 0.10);
  color: rgba(255, 160, 160, 0.90);
  border: 1px solid rgba(255, 80, 80, 0.20);
}

/* =========================================================
   PAGE HERO + LEGAL PAGES
   ========================================================= */
.mba-page-hero {
  padding: clamp(58px, 7vw, 96px) 0 clamp(36px, 5vw, 56px);
  background:
    radial-gradient(circle at 82% 18%, rgba(181, 244, 62, 0.08), transparent 22rem),
    var(--mba-dark);
  position: relative;
  overflow: hidden;
}

.mba-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.mba-page-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(237, 245, 231, 0.60);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.58;
}

.mba-page-content {
  padding: clamp(46px, 6vw, 72px) 0;
}

.mba-readable {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  color: rgba(237, 245, 231, 0.76);
  font-size: 1.05rem;
  line-height: 1.76;
}

.mba-readable h2,
.mba-readable h3 {
  margin-top: 2em;
  line-height: 1.1;
  color: var(--mba-light);
}

.mba-legal {
  background: var(--mba-paper);
}

/* =========================================================
   FOOTER
   ========================================================= */
.mba-site-footer {
  padding: 48px 0;
  background: var(--mba-dark);
  border-top: 1px solid var(--mba-line);
  position: relative;
}

.mba-site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mba-accent), transparent);
  opacity: 0.5;
}

.mba-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.mba-footer-inner strong {
  display: block;
  color: var(--mba-light);
  font-weight: 800;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mba-footer-inner > div > div {
  margin-top: 6px;
  color: rgba(237, 245, 231, 0.44);
  font-size: 0.86rem;
}

.mba-footer-links,
.mba-footer-links ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mba-footer-links a,
.mba-footer-links ul a {
  color: rgba(237, 245, 231, 0.44);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.mba-footer-links a:hover,
.mba-footer-links ul a:hover {
  color: var(--mba-accent);
}

/* =========================================================
   FOCUS STATES (ACCESSIBILITY)
   ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--mba-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   RESPONSIVE — 980px
   ========================================================= */
@media (max-width: 980px) {
  .mba-hero-grid,
  .mba-about-layout,
  .mba-contact-layout,
  .mba-home-services-layout,
  .mba-home-about-layout,
  .mba-support-layout,
  .mba-compliance-inner {
    grid-template-columns: 1fr;
  }

  .mba-principle-grid {
    grid-template-columns: 1fr;
  }

  .mba-proof-grid,
  .mba-process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mba-services-grid,
  .mba-benefit-grid,
  .mba-build-grid,
  .mba-home-case-grid,
  .mba-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mba-partner-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mba-final-cta-inner,
  .mba-partners-head {
    display: grid;
  }

  .mba-service:nth-child(3n) {
    border-right: 1px solid var(--mba-line);
  }

  .mba-service:nth-child(2n) {
    border-right: 0;
  }

  .mba-benefit:nth-child(3n) {
    border-right: 1px solid var(--mba-line);
  }

  .mba-benefit:nth-child(2n) {
    border-right: 0;
  }

  .mba-platform {
    grid-template-columns: 60px 1fr;
  }

  .mba-platform p,
  .mba-platform strong {
    grid-column: 2;
  }

  .mba-home-service-stack article {
    grid-template-columns: 46px 1fr;
  }

  .mba-home-service-stack p {
    grid-column: 2;
  }

  .mba-contact-methods {
    grid-template-columns: 1fr;
  }

  .mba-case {
    grid-template-columns: 1fr;
  }

  .mba-case-metric {
    justify-self: start;
  }
}

/* =========================================================
   RESPONSIVE — 760px
   ========================================================= */
@media (max-width: 760px) {
  .mba-container {
    width: min(100% - 28px, var(--mba-max));
  }

  .mba-menu-toggle {
    display: inline-flex;
  }

  .mba-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    padding: 24px;
    background: rgba(3, 5, 4, 0.97);
    border-bottom: 1px solid var(--mba-line);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 50;
  }

  .mba-nav.is-open {
    display: block;
  }

  .mba-nav ul {
    display: grid;
    gap: 16px;
  }

  .mba-nav a::after {
    display: none;
  }

  .mba-nav .mba-btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .mba-hero {
    min-height: 580px;
  }

  .mba-hero h1,
  .mba-page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .mba-proof-grid,
  .mba-services-grid,
  .mba-process-rail,
  .mba-benefit-grid,
  .mba-build-grid,
  .mba-home-case-grid,
  .mba-team-grid {
    grid-template-columns: 1fr;
  }

  .mba-partner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mba-proof-item,
  .mba-service,
  .mba-step,
  .mba-benefit {
    border-right: 0;
  }

  .mba-benefit:nth-child(3n) {
    border-right: 0;
  }

  .mba-about-image {
    min-height: 360px;
  }

  .mba-cursor-glow {
    display: none;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js-ready [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
