/* ══════════════════════════════════════════════════════════════════════════
   MOM THEME — Main Stylesheet
   NoGood Inspired Growth Lab Design System
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --brand-dark: #181818;
  --off-black: #0b0b0d;
  --electric-purple: #7a00df;
  --vibrant-orange: #ff6900;
  --soft-pink: #f78da7;
  --pure-white: #ffffff;

  /* Surface */
  --surface: #141313;
  --surface-low: #1c1b1b;
  --surface-mid: #201f1f;
  --surface-high: #2b2a2a;
  --card-surface: #252424;
  --border-stroke: #333333;

  /* Text */
  --on-surface: #e5e2e1;
  --on-surface-dim: #9b9b9b;
  --light-gray: #c9c9c9;

  /* Semantic */
  --error-red: #cf2e2e;

  /* Typography */
  --font-display: "Space Grotesk", "Arial Black", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 128px;

  /* Layout */
  --container: 1280px;
  --gutter: 24px;
  --px: 48px;
  --nav-h: 80px;

  /* Motion */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --fast: 150ms;
  --mid: 300ms;
  --slow: 600ms;
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--off-black);
  overflow-x: hidden;
}

body.mom-dark {
  background: var(--off-black);
}

::selection {
  background: var(--electric-purple);
  color: var(--pure-white);
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── Material Icons ──────────────────────────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
  display: inline-block;
  vertical-align: middle;
}

/* ── Labels ──────────────────────────────────────────────────────────────── */
.mom-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric-purple);
  margin-bottom: 12px;
}
.mom-label--orange {
  color: var(--vibrant-orange);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.mom-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--electric-purple);
  color: var(--pure-white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition:
    background var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease),
    transform var(--fast);
  box-shadow: 0 0 0 rgba(122, 0, 223, 0);
}
.mom-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--pure-white);
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity var(--mid) var(--ease),
    transform var(--mid) var(--ease);
}
.mom-btn-primary:hover {
  background: var(--vibrant-orange);
  box-shadow: 0 0 40px rgba(255, 105, 0, 0.4);
  transform: translateY(-2px);
}
.mom-btn-primary:hover::after {
  opacity: 1;
  transform: scale(1);
}
.mom-btn-primary:active {
  transform: translateY(0);
}

.mom-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color var(--mid) var(--ease),
    color var(--mid) var(--ease),
    background var(--mid) var(--ease);
}
.mom-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--pure-white);
  color: var(--pure-white);
}

/* ── Section Headings ────────────────────────────────────────────────────── */
.mom-section-head {
  text-align: center;
  margin-bottom: 64px;
}
.mom-section-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════════════ */
.mom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  background: transparent;
  transition:
    background var(--mid) var(--ease),
    height var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease);
}
.mom-nav.scrolled {
  height: 64px;
  background: rgba(11, 11, 13, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mom-nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
}

.mom-nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pure-white);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Custom logo */
.mom-nav a.custom-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mom-nav a.custom-logo-link img.custom-logo {
  max-width: 200px;
  max-height: 52px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--fast);
}
.mom-nav a.custom-logo-link:hover img.custom-logo {
  opacity: 0.8;
}

.mom-nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.mom-nav__links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--fast);
  position: relative;
  padding-bottom: 4px;
}
.mom-nav__links a:hover,
.mom-nav__links a.active {
  color: var(--pure-white);
}
.mom-nav__links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--electric-purple);
}

.mom-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--pure-white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background var(--mid) var(--ease),
    border-color var(--mid) var(--ease);
}
.mom-nav__cta:hover {
  background: var(--pure-white);
  border-color: var(--pure-white);
  color: var(--brand-dark);
}

/* Hamburger */
.mom-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 38px;
  height: 38px;
  position: relative;
  flex-shrink: 0;
}
.mom-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pure-white);
  transition:
    transform 250ms var(--ease),
    opacity 200ms ease;
  transform-origin: center;
  position: absolute;
  left: 7px;
}
.mom-nav__hamburger span:nth-child(1) {
  top: 10px;
}
.mom-nav__hamburger span:nth-child(2) {
  top: 18px;
}
.mom-nav__hamburger span:nth-child(3) {
  top: 26px;
}
.mom-nav__hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mom-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.mom-nav__hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ── Mobile menu ──────────────────────────────────────────────────────────── */
.mom-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--off-black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 350ms var(--ease);
}
.mom-mobile-menu.open {
  transform: translateX(0);
}
.mom-mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pure-white);
  transition: color var(--fast);
}
.mom-mobile-menu a:hover {
  color: var(--electric-purple);
}
.mom-mobile-menu__close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 28px;
  color: var(--on-surface-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--fast);
}
.mom-mobile-menu__close:hover {
  color: var(--pure-white);
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.mom-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: var(--off-black);
}

/* Perspective floor grid — visible, purple-tinted */
/* Full-hero perspective grid — floor + ceiling, infinite driving loop */
.mom-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  /* Horizon glow line exactly at the vanishing point */
  background: linear-gradient(to bottom, transparent calc(50% - 1px), rgba(122, 0, 223, 0.55) calc(50% - 1px), rgba(255, 105, 0, 0.3) 50%, rgba(122, 0, 223, 0.55) calc(50% + 1px), transparent calc(50% + 1px));
}

/* Floor — bottom half, lines rush toward viewer */
.mom-hero__grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(122, 0, 223, 0.28) 1px, transparent 1px), linear-gradient(to bottom, rgba(122, 0, 223, 0.22) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center 0;
  transform: perspective(500px) rotateX(55deg);
  transform-origin: 50% 0%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  animation: mom-grid-drive 1.2s linear infinite;
  will-change: background-position;
}

/* Ceiling — top half, mirrored upward */
.mom-hero__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 50%;
  background-image: linear-gradient(to right, rgba(122, 0, 223, 0.28) 1px, transparent 1px), linear-gradient(to bottom, rgba(122, 0, 223, 0.22) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center 80px;
  transform: perspective(500px) rotateX(-55deg);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  animation: mom-grid-drive-rev 1.2s linear infinite;
  will-change: background-position;
}

@keyframes mom-grid-drive {
  from {
    background-position: center 0;
  }
  to {
    background-position: center 80px;
  }
}
@keyframes mom-grid-drive-rev {
  from {
    background-position: center 80px;
  }
  to {
    background-position: center 0;
  }
}

/* Noise grain */
.mom-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Two-column inner */
.mom-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding: calc(var(--nav-h) + 48px) var(--px) 120px;
  min-height: 100svh;
}

/* ── Left: copy ───────────────────────────────────────────────────────────── */
.mom-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-right: 48px;
}

.mom-hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric-purple);
  margin-bottom: 24px;
}
.mom-hero__overline::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--electric-purple);
  flex-shrink: 0;
}

/* H1 */
.mom-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 28px;
}
.mom-hero__accent {
  color: var(--electric-purple);
}

.mom-hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--light-gray);
  max-width: 480px;
  margin-bottom: 44px;
}

.mom-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Right: video visual ──────────────────────────────────────────────────── */
.mom-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-width: 600px;
  width: 100%;
  justify-self: center;
}

/* Outer decorative spinning ring */
.mom-hero__video-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.mom-hero__video-ring--outer {
  inset: -28px;
  border: 1px dashed rgba(122, 0, 223, 0.55);
  animation: mom-ring-spin 32s linear infinite;
}
.mom-hero__video-ring--inner {
  inset: 18px;
  border: 1px dashed rgba(255, 105, 0, 0.4);
  animation: mom-ring-spin 20s linear infinite reverse;
}
@keyframes mom-ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Purple + orange ambient glow behind video */
.mom-hero__video-glow {
  position: absolute;
  inset: 5%;
  border-radius: 24px;
  z-index: 0;
  background: radial-gradient(circle, rgba(122, 0, 223, 0.35) 0%, rgba(255, 105, 0, 0.15) 50%, transparent 75%);
  filter: blur(50px);
  animation: mom-glow-pulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes mom-glow-pulse {
  from {
    opacity: 0.7;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Video frame — fills the visual container edge-to-edge */
.mom-hero__video-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 66% 66% at 50% 50%, black 45%, rgba(0, 0, 0, 0.7) 62%, transparent 72%);
  mask-image: radial-gradient(ellipse 66% 66% at 50% 50%, black 45%, rgba(0, 0, 0, 0.7) 62%, transparent 72%);
}

.mom-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.08) saturate(1.15);
}

/* Scroll indicator */
.mom-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: fit-content;
  z-index: 3;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: mom-bounce 2.4s ease-in-out infinite;
  transition: color var(--fast);
}
.mom-hero__scroll:hover {
  color: rgba(255, 255, 255, 0.75);
}
.mom-hero__scroll .material-symbols-outlined {
  font-size: 28px;
}
@keyframes mom-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
  }
}

/* Partner strip — below hero, full-width block */
/* ── Partner strip ──────────────────────────────────────────────────────── */
.mom-hero__strip {
  width: 100%;
  position: relative;
  background: #0a0a0c;
  border-bottom: 1px solid rgba(122, 0, 223, 0.18);
  padding: 0 var(--px);
  overflow: hidden;
}
/* Neon top edge */
.mom-hero__strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(122, 0, 223, 0.7) 30%, rgba(255, 105, 0, 0.5) 50%, rgba(122, 0, 223, 0.7) 70%, transparent);
}
.mom-hero__strip-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.mom-hero__strip-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric-purple);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 16px 28px 16px 0;
  border-right: 1px solid rgba(122, 0, 223, 0.2);
  margin-right: 0;
}
/* Marquee track */
.mom-hero__partners {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.mom-hero__partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: mom-marquee 18s linear infinite;
  white-space: nowrap;
}
@keyframes mom-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mom-hero__partners-track span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  padding: 16px 32px;
  position: relative;
  transition: color 0.3s;
}
.mom-hero__partners-track span::after {
  content: "·";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(122, 0, 223, 0.35);
}
.mom-hero__partners-track span:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--slow) var(--ease),
    transform var(--slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade--delay-1.visible {
  transition-delay: 0.1s;
}
.reveal-fade--delay-2.visible {
  transition-delay: 0.2s;
}
.reveal-fade--delay-3.visible {
  transition-delay: 0.35s;
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════════════════ */
.mom-services {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, #0d0d10 0%, var(--brand-dark) 100%);
  position: relative;
}
.mom-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(122, 0, 223, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mom-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ── Metallic card ────────────────────────────────────────────────────────── */
.mom-card {
  position: relative;
  /* Metallic dark surface: subtle top highlight */
  background: linear-gradient(160deg, #2a2930 0%, #1c1b22 40%, #18171d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}
/* Ambient purple corner glow — always subtle */
.mom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 10% 0%, rgba(122, 0, 223, 0.1) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 90% 100%, rgba(255, 105, 0, 0.05) 0%, transparent 60%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s var(--ease);
}
/* Metallic shine sweep — slides across on hover */
.mom-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.13) 50%, rgba(255, 255, 255, 0.03) 70%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 0s;
  pointer-events: none;
  z-index: 1;
}
.mom-card:hover {
  border-color: rgba(190, 130, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(122, 0, 223, 0.2),
    0 0 40px rgba(122, 0, 223, 0.22),
    0 12px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}
.mom-card:hover::before {
  opacity: 1.5;
}
/* Trigger shine sweep on hover via animation */
.mom-card:hover::after {
  animation: mom-card-shine 0.55s ease forwards;
}
@keyframes mom-card-shine {
  from {
    left: -75%;
  }
  to {
    left: 130%;
  }
}

/* All inner content sits above the pseudo layers */
.mom-card > * {
  position: relative;
  z-index: 2;
}

.mom-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 0, 223, 0.2) 0%, rgba(122, 0, 223, 0.08) 100%);
  border: 1px solid rgba(122, 0, 223, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.35s,
    background 0.35s;
}
.mom-card:hover .mom-card__icon {
  background: linear-gradient(135deg, rgba(122, 0, 223, 0.35) 0%, rgba(122, 0, 223, 0.15) 100%);
  border-color: rgba(122, 0, 223, 0.55);
}
.mom-card__icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--electric-purple);
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.mom-card__h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mom-card__p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-surface-dim);
  flex: 1;
}

.mom-card__arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.15);
  transition:
    color var(--fast),
    transform var(--mid) var(--ease);
  align-self: flex-end;
}
.mom-card:hover .mom-card__arrow {
  color: var(--electric-purple);
  transform: translateX(6px);
}

/* ══════════════════════════════════════════════════════════════════════════
   GROWTH ENGINE
   ══════════════════════════════════════════════════════════════════════════ */
.mom-engine {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--surface) 0%, #0f0e14 100%);
  overflow: hidden;
  position: relative;
}
.mom-engine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(122, 0, 223, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.mom-engine__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mom-engine__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--pure-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mom-engine__p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-gray);
  margin-bottom: 36px;
}

.mom-engine__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.mom-engine__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mom-engine__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pure-white);
  flex-shrink: 0;
}
.mom-engine__dot--orange {
  background: var(--vibrant-orange);
  box-shadow: 0 0 8px rgba(255, 105, 0, 0.6);
}
.mom-engine__dot--purple {
  background: var(--electric-purple);
  box-shadow: 0 0 8px rgba(122, 0, 223, 0.6);
}
.mom-engine__dot--pink {
  background: var(--soft-pink);
  box-shadow: 0 0 8px rgba(247, 141, 167, 0.6);
}

/* ══════════════════════════════════════════════════════════════════════════
   ORBITAL DIAGRAM
   ══════════════════════════════════════════════════════════════════════════ */
.mom-orbit {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex-shrink: 0;
}

/* Ambient glows */
.mom-orbit__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: mom-glow-pulse 4s ease-in-out infinite alternate;
}
.mom-orbit__glow--purple {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(122, 0, 223, 0.28) 0%, transparent 70%);
  filter: blur(32px);
}
.mom-orbit__glow--orange {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.2) 0%, transparent 70%);
  filter: blur(24px);
  animation-delay: -2s;
}

/* Core */
.mom-orbit__core {
  position: relative;
  z-index: 10;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--vibrant-orange), var(--electric-purple), var(--vibrant-orange));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px rgba(122, 0, 223, 0.15),
    0 0 60px rgba(122, 0, 223, 0.4),
    0 0 120px rgba(255, 105, 0, 0.2);
  animation: mom-core-spin 12s linear infinite;
}
@keyframes mom-core-spin {
  to {
    filter: hue-rotate(360deg);
  }
}
/* Inner white circle so text is readable */
.mom-orbit__core::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #0f0e14;
  z-index: 0;
}
.mom-orbit__core-label,
.mom-orbit__core-sub {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  line-height: 1;
  text-align: center;
}
.mom-orbit__core-label {
  font-size: 22px;
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: 0.05em;
}
.mom-orbit__core-sub {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

/* Rings */
.mom-orbit__ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mom-orbit__ring--1 {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(122, 0, 223, 0.3);
  animation: mom-spin 22s linear infinite;
  /* small dash at top for a tick-mark effect */
  background: transparent;
}
.mom-orbit__ring--1::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric-purple);
  box-shadow: 0 0 8px var(--electric-purple);
}
.mom-orbit__ring--2 {
  width: 370px;
  height: 370px;
  border: 1px dashed rgba(255, 105, 0, 0.2);
  animation: mom-spin 38s linear infinite reverse;
}
.mom-orbit__ring--2::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vibrant-orange);
  box-shadow: 0 0 8px var(--vibrant-orange);
}
.mom-orbit__ring--3 {
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: mom-spin 60s linear infinite;
}
.mom-orbit__ring--4 {
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(122, 0, 223, 0.08);
  animation: mom-spin 90s linear infinite reverse;
}

@keyframes mom-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Icon nodes on ring 1 */
.mom-orbit__node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(-1 * var(--a))) translate(-50%, -50%);
}
.mom-orbit__node .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
  color: rgba(255, 255, 255, 0.8);
}
.mom-orbit__node span:last-child {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Node icon box */
.mom-orbit__node::before {
  display: none;
}
.mom-orbit__node .material-symbols-outlined {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 28, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.mom-orbit__node--orange .material-symbols-outlined {
  color: var(--vibrant-orange);
  border-color: rgba(255, 105, 0, 0.3);
  box-shadow:
    0 0 16px rgba(255, 105, 0, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.5);
}
.mom-orbit__node--purple .material-symbols-outlined {
  color: var(--electric-purple);
  border-color: rgba(122, 0, 223, 0.35);
  box-shadow:
    0 0 16px rgba(122, 0, 223, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.5);
}
.mom-orbit__node--pink .material-symbols-outlined {
  color: var(--soft-pink);
  border-color: rgba(247, 141, 167, 0.3);
  box-shadow:
    0 0 16px rgba(247, 141, 167, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Text pills on ring 2 */
.mom-orbit__pill {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(20, 18, 28, 0.9);
  border: 1px solid rgba(122, 0, 223, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(-1 * var(--a))) translate(-50%, -50%);
  z-index: 4;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 12px rgba(122, 0, 223, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Small connector dots on ring 3 */
.mom-orbit__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(122, 0, 223, 0.5);
  box-shadow: 0 0 8px rgba(122, 0, 223, 0.6);
  transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(-1 * var(--a))) translate(-50%, -50%);
  z-index: 3;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESULTS
   ══════════════════════════════════════════════════════════════════════════ */
.mom-results {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--surface-low);
  overflow: hidden;
}
.mom-results__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 105, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.mom-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 64px;
  background: var(--border-stroke);
  border: 1px solid var(--border-stroke);
  border-radius: 12px;
  overflow: hidden;
}
.mom-stat {
  background: var(--card-surface);
  padding: 40px 32px;
  text-align: center;
  transition: background var(--mid) var(--ease);
}
.mom-stat:hover {
  background: var(--surface-high);
}
.mom-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.mom-stat__label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-dim);
}

/* Case studies */
.mom-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mom-case {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

/* Metallic shine sweep — slides left→right on hover */
.mom-case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.11) 50%, rgba(255, 255, 255, 0.03) 70%, transparent 100%);
  transform: translateX(-200%);
  z-index: 5;
  pointer-events: none;
}
.mom-case:hover::before {
  transform: translateX(310%);
  transition: transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Bottom gradient overlay for text legibility */
.mom-case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 18, 0.97) 0%, rgba(10, 8, 18, 0.55) 45%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Purple card ─────────────────────────── */
.mom-case--purple {
  background: linear-gradient(145deg, #4b00a8 0%, #230055 28%, #110030 55%, #0b0b14 100%);
  border-top: 2px solid rgba(122, 0, 223, 0.65);
}
.mom-case--purple:hover {
  transform: translateY(-8px);
  border-top-color: var(--electric-purple);
  border-color: rgba(122, 0, 223, 0.55);
  box-shadow:
    0 12px 48px rgba(122, 0, 223, 0.3),
    0 0 0 1px rgba(122, 0, 223, 0.12),
    inset 0 1px 0 rgba(210, 170, 255, 0.18);
}

/* ── Orange card ─────────────────────────── */
.mom-case--orange {
  background: linear-gradient(145deg, #d04800 0%, #6e2200 28%, #3a1000 55%, #0f0b0a 100%);
  border-top: 2px solid rgba(255, 105, 0, 0.65);
}
.mom-case--orange:hover {
  transform: translateY(-8px);
  border-top-color: var(--vibrant-orange);
  border-color: rgba(255, 105, 0, 0.5);
  box-shadow:
    0 12px 48px rgba(255, 105, 0, 0.25),
    0 0 0 1px rgba(255, 105, 0, 0.1),
    inset 0 1px 0 rgba(255, 210, 160, 0.18);
}

/* Content wrapper */
.mom-case__content {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

/* Tag */
.mom-case__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(122, 0, 223, 0.18);
  border: 1px solid rgba(122, 0, 223, 0.35);
  color: rgba(210, 170, 255, 0.92);
  margin-bottom: 28px;
}
.mom-case--orange .mom-case__tag {
  background: rgba(255, 105, 0, 0.14);
  border-color: rgba(255, 105, 0, 0.3);
  color: rgba(255, 185, 125, 0.92);
}

/* Large decorative metric */
.mom-case__metric {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--pure-white);
  margin-bottom: 14px;
}
.mom-case--purple .mom-case__metric {
  text-shadow: 0 0 80px rgba(180, 100, 255, 0.5);
}
.mom-case--orange .mom-case__metric {
  text-shadow: 0 0 80px rgba(255, 130, 0, 0.45);
}

/* Sub-label below metric */
.mom-case__h3 {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

/* Description */
.mom-case__p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

/* Bottom CTA link */
.mom-case__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition:
    color 0.25s var(--ease),
    gap 0.25s var(--ease);
  align-self: flex-start;
}
.mom-case--purple:hover .mom-case__link {
  color: rgba(210, 170, 255, 0.9);
  gap: 14px;
}
.mom-case--orange:hover .mom-case__link {
  color: rgba(255, 185, 125, 0.9);
  gap: 14px;
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════════════════════════════════════════════ */
.mom-quote {
  position: relative;
  padding: var(--space-xl) 0;
  background: #0c0b12;
  overflow: hidden;
}
.mom-quote__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(122, 0, 223, 0.1) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 50% 100%, rgba(255, 105, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.mom-quote__inner {
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  padding: 56px 64px;
  border: 1px solid rgba(122, 0, 223, 0.18);
  border-top: 2px solid rgba(122, 0, 223, 0.55);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(30, 24, 50, 0.7) 0%, rgba(15, 13, 22, 0.85) 100%);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(122, 0, 223, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(122, 0, 223, 0.06) inset;
}

/* Stars */
.mom-quote__stars {
  font-size: 16px;
  color: var(--vibrant-orange);
  letter-spacing: 3px;
  margin-bottom: 28px;
  display: block;
  opacity: 0.9;
}

/* Large decorative quote mark */
.mom-quote__mark {
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: 0.65;
  color: var(--electric-purple);
  opacity: 0.15;
  position: absolute;
  top: 36px;
  left: 52px;
  pointer-events: none;
  user-select: none;
}

.mom-quote__text {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* Thin divider */
.mom-quote__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--electric-purple), var(--vibrant-orange));
  border-radius: 2px;
  margin-bottom: 24px;
}

.mom-quote__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mom-quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-purple), var(--vibrant-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pure-white);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.mom-quote__author > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mom-quote__name {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
}
.mom-quote__role {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════════════════════════════════ */
.mom-cta-strip {
  position: relative;
  padding: 100px 0;
  background: #0b0a11;
  text-align: center;
  overflow: hidden;
}
.mom-cta-strip__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(122, 0, 223, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.mom-cta-strip__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
}
.mom-cta-strip__line--top {
  top: 0;
  background: linear-gradient(to right, transparent, var(--electric-purple), transparent);
  box-shadow: 0 0 30px rgba(122, 0, 223, 0.45);
  opacity: 0.7;
}
.mom-cta-strip__line--bottom {
  bottom: 0;
  background: linear-gradient(to right, transparent, var(--vibrant-orange), transparent);
  opacity: 0.25;
}
.mom-cta-strip__inner {
  position: relative;
  z-index: 1;
}
.mom-cta-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vibrant-orange);
  margin-bottom: 24px;
}
.mom-cta-strip__eyebrow::before,
.mom-cta-strip__eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--vibrant-orange);
  opacity: 0.5;
}
.mom-cta-strip__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.mom-cta-strip__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 48px;
}
.mom-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  background: var(--electric-purple);
  color: var(--pure-white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition:
    background var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease),
    transform var(--fast);
}
.mom-cta-strip__btn:hover {
  background: var(--vibrant-orange);
  box-shadow: 0 0 60px rgba(255, 105, 0, 0.4);
  transform: translateY(-3px);
  color: var(--pure-white);
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════════════════════ */
.mom-contact {
  position: relative;
  padding: var(--space-xl) 0 var(--space-2xl);
  background: #0d0c14;
  overflow: hidden;
}
.mom-contact__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(122, 0, 223, 0.09) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 100% 80%, rgba(255, 105, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.mom-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.mom-contact__h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--pure-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mom-contact__p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
}
.mom-contact__checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mom-contact__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.mom-contact__checklist li .material-symbols-outlined {
  font-size: 18px;
  color: var(--electric-purple);
  flex-shrink: 0;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* ── Form wrap ─────────────────────────────────────────────────────────── */
.mom-contact__form-wrap {
  background: linear-gradient(160deg, rgba(28, 24, 44, 0.9) 0%, rgba(14, 12, 22, 0.95) 100%);
  border: 1px solid rgba(122, 0, 223, 0.18);
  border-top: 2px solid rgba(122, 0, 223, 0.45);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(122, 0, 223, 0.05) inset;
}

.mom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mom-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mom-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mom-label-field {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.mom-label-field span {
  color: var(--electric-purple);
  margin-left: 2px;
}

.mom-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--pure-white);
  outline: none;
  transition:
    border-color var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease);
  width: 100%;
  background: transparent;
}
.mom-input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}
.mom-input:focus {
  border-bottom-color: var(--electric-purple);
  box-shadow: 0 2px 0 0 rgba(122, 0, 223, 0.45);
}
.mom-input.has-error {
  border-bottom-color: var(--error-red);
  box-shadow: 0 2px 0 0 rgba(207, 46, 46, 0.4);
}
.mom-input--textarea {
  resize: none;
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 14px 12px;
}
.mom-input--textarea:focus {
  border-bottom-color: var(--electric-purple);
  box-shadow: 0 2px 0 0 rgba(122, 0, 223, 0.45);
}

.mom-field-error {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--error-red);
  min-height: 16px;
  letter-spacing: 0.04em;
}

.mom-form__submit {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.mom-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 48px;
  background: var(--electric-purple);
  color: var(--pure-white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  border: none;
  transition:
    background var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease),
    transform var(--fast);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.mom-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  pointer-events: none;
}
.mom-submit:hover {
  background: var(--vibrant-orange);
  box-shadow: 0 0 48px rgba(255, 105, 0, 0.4);
  transform: translateY(-2px);
}
.mom-submit:hover::before {
  left: 130%;
  transition: left 0.55s ease;
}
.mom-submit:active {
  transform: translateY(0);
}
.mom-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success state */
.mom-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 32px;
}
.mom-success.show {
  display: flex;
}
.mom-success__icon .material-symbols-outlined {
  font-size: 64px;
  color: var(--electric-purple);
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
}
.mom-success__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mom-success__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--light-gray);
  max-width: 400px;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.mom-footer {
  position: relative;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.mom-footer__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--electric-purple), transparent);
  box-shadow: 0 0 24px rgba(122, 0, 223, 0.35);
  opacity: 0.6;
}

/* Main row: brand left, legal links right */
.mom-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 48px var(--px) 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.mom-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mom-footer__brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 8px;
}

/* Custom logo in footer */
.mom-footer a.custom-logo-link {
  display: inline-flex;
  margin-bottom: 10px;
}
.mom-footer a.custom-logo-link img.custom-logo {
  max-width: 220px;
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0.85);
  transition: filter var(--fast);
}
.mom-footer a.custom-logo-link:hover img.custom-logo {
  filter: brightness(1);
}

.mom-footer__tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  margin: 0;
}

/* Legal links */
.mom-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.mom-footer__legal a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--fast);
}
.mom-footer__legal a:hover {
  color: rgba(210, 170, 255, 0.9);
}
.mom-footer__legal-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Bottom bar: copyright */
.mom-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px var(--px);
  max-width: var(--container);
  margin-inline: auto;
}
.mom-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════════════════════
   PAGE TEMPLATES (page.php / single.php)
   ══════════════════════════════════════════════════════════════════════════ */
.mom-page-header {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--off-black);
  border-bottom: 1px solid var(--border-stroke);
}
.mom-page-header .container {
  max-width: 760px;
}
.mom-page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mom-page-meta {
  font-size: 13px;
  color: var(--on-surface-dim);
  letter-spacing: 0.06em;
}

.mom-page-content {
  padding: 80px 0 120px;
  background: var(--surface);
}

.mom-prose {
  max-width: 720px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-surface);
}
.mom-prose h2,
.mom-prose h3,
.mom-prose h4 {
  font-family: var(--font-display);
  color: var(--pure-white);
  margin: 40px 0 16px;
  text-transform: uppercase;
}
.mom-prose p {
  margin-bottom: 20px;
}
.mom-prose a {
  color: var(--electric-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mom-prose a:hover {
  color: var(--vibrant-orange);
}

/* ══════════════════════════════════════════════════════════════════════════
   404
   ══════════════════════════════════════════════════════════════════════════ */
.mom-404 {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: var(--nav-h) 0 0;
  background: var(--off-black);
}
.mom-404__inner {
  text-align: center;
  padding: 80px 0;
}
.mom-404__code {
  display: block;
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  color: var(--border-stroke);
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.mom-404__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mom-404__text {
  font-size: 16px;
  color: var(--on-surface-dim);
  margin-bottom: 40px;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --px: 32px;
  }
  /* Hero: stack on tablet */
  .mom-hero__inner {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-h) + 32px) var(--px) 100px;
    gap: 48px;
    text-align: center;
  }
  .mom-hero__copy {
    align-items: center;
    padding-right: 0;
  }
  .mom-hero__h1 {
    font-size: clamp(38px, 6vw, 60px);
  }
  .mom-hero__overline {
    justify-content: center;
  }
  .mom-hero__visual {
    max-width: 380px;
    width: 80%;
    justify-self: center;
  }
  .mom-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mom-engine__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .mom-orbit {
    width: 360px;
    height: 360px;
    justify-self: center;
  }
  .mom-orbit__ring--1 {
    width: 180px;
    height: 180px;
  }
  .mom-orbit__ring--2 {
    width: 260px;
    height: 260px;
  }
  .mom-orbit__ring--3 {
    width: 340px;
    height: 340px;
  }
  .mom-orbit__ring--4 {
    width: 360px;
    height: 360px;
  }
  .mom-orbit__node {
    --r: 90px !important;
  }
  .mom-orbit__pill {
    --r: 130px !important;
    font-size: 9px;
  }
  .mom-orbit__dot {
    --r: 168px !important;
  }
  .mom-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mom-footer__inner {
    flex-wrap: wrap;
    gap: 24px;
  }
  .mom-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .mom-cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --px: 20px;
    --nav-h: 68px;
  }

  .mom-nav__links,
  .mom-nav__cta {
    display: none;
  }
  .mom-nav__hamburger {
    display: flex;
  }

  .mom-hero__inner {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-h) + 24px) var(--px) 100px;
    gap: 40px;
    text-align: center;
  }
  .mom-hero__copy {
    align-items: center;
    padding-right: 0;
  }
  .mom-hero__overline {
    justify-content: center;
  }
  .mom-hero__h1 {
    font-size: clamp(34px, 10vw, 52px);
  }
  .mom-hero__sub {
    font-size: 15px;
  }
  .mom-hero__visual {
    max-width: 280px;
    width: 70%;
  }

  .mom-services__grid {
    grid-template-columns: 1fr;
  }
  .mom-card {
    padding: 32px 28px;
  }

  .mom-orbit {
    display: none;
  }

  .mom-form__row {
    grid-template-columns: 1fr;
  }
  .mom-contact__form-wrap {
    padding: 32px 24px;
  }

  .mom-stats {
    grid-template-columns: 1fr 1fr;
  }
  .mom-stat {
    padding: 28px 20px;
  }

  .mom-cases {
    grid-template-columns: 1fr;
  }

  .mom-quote__inner {
    padding: 40px 28px;
  }

  .mom-cta-strip__h2 {
    font-size: clamp(32px, 9vw, 60px);
  }

  /* strip is now outside hero, always visible */
}

@media (max-width: 480px) {
  .mom-stats {
    grid-template-columns: 1fr;
  }
  .mom-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .mom-hero__visual {
    max-width: 240px;
  }
  .mom-btn-primary,
  .mom-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
